Practical Application Of Databases For Markets Analysis Working with data has become the main task for modern software - both for standalone and network applications. To solve this problem a specialized software were created. These are Database Management Systems (DBMS), that can structure, systematize and organize data for their computer...
double iFractals4(string symbol,
int tf,
int mode,
int shift)
{
ENUM_TIMEFRAMES timeframe=TFMigrate(tf);
int handle=iFractals(symbol,timeframe);
if(handle<0)
{
Print("The iFractals object is not created: Error",GetLastError());
return(-1);
}
else
{
double buffer=CopyBufferMQL4(handle,mode-1,shift);
if (buffer!=EMPTY_VALUE) return(CopyBufferMQL4(handle,mode-1,shift));
elsereturn(0);
}
}
注意
#define OBJPROP_TIME1 300
#define OBJPROP_PRICE1 301
#define OBJPROP_TIME2 302
#define OBJPROP_PRICE2 303
#define OBJPROP_TIME3 304
#define OBJPROP_PRICE3 305
在本帖中没有显示,您可以下载文件查找。
您好、
我认为SetIndexStyleMQL4 的定义 中缺少了最后一个"}"。
感谢您的文章,非常有用 :)
卢西恩
bool IsTesting()
bool IsTradeAllowed()
bool IsVisualMode()
雷区
您好、
这篇旧文(2010 年 5 月,距今已超过 11 年!)是最早试图简化将脚本/EA 从 MQL4 迁移到 MQL5 的过程的文章之一。与此同时,广受欢迎的 mql4compat.mqh 已经创建,我刚刚在 github 上发布了 mql4compat 的维护版本,供感兴趣的人参考:https://github.com/eromawyn/mql4compat。
您好,我在使用这些函数(请参阅下文)时一直遇到这些错误。请帮助解决。
图片很好,但您需要 MQL5 代码。您需要使用按钮插入代码
第 19 节中的信息有误。函数
在 MQL5 中有类似的 函数
你们好,感谢你们的出色工作。
在从 MT4 转换分形 时,我遇到了一个问题。