AutoRefresh

AutoRefresh最新版

更新日期:2022-03-01分类标签: 语言:中文平台:没限制

10 人已下载 手机查看

//+——————————————————————+
//| AutoRefresh.mq4 |
//| Ttomas |
//| TradeLikeAPro.ru |
//+——————————————————————+
#property copyright “Ttomas”
#property link “TradeLikeAPro.ru”

#define WM_COMMAND 0x0111
#property indicator_chart_window
#import “user32.dll”
int RegisterWindowMessageA(string lpstring);
int PostMessageA(int hWnd,int Msg,int wParam,string lParam);
#import
extern int PeriodSec=30;
static int tic=0;
int OnInit()
{
PeriodSec*=1000;
return(0);
}
void OnDeinit(const int Des)
{
return;
}
int OnCalculate(const int rates_total,const int prev_calculated, const datetime &time[], const double &open[], const double &high[], const double &low[], const double &close[], const long &tick_volume[], const long &volume[], const int &spread[] )
{
if (tic==0) tic=GetTickCount();
int k=GetTickCount();
if (MathAbs(k-tic)>PeriodSec)
{
PostMessageA (WindowHandle (Symbol(), Period()), WM_COMMAND, 33324, 0);
PostMessageA (WindowHandle (Symbol(), 0), RegisterWindowMessageA (“MetaTrader4_Internal_Message”), 2, 1);
tic=GetTickCount();
}
return(0);
}
//+——————————————————————+

如果你对文件有了解,请帮助投票!

If you are familiar with the file, please help vote!

平均评分 0 / 5. 投票数: 0

到目前为止还没有投票!成为第一位投票人。

相关资源

暂无评论

暂无评论...