Mql5官网 WalkForwardLight 外汇EA

Mql5官网 WalkForwardLight 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
Mql5官网 WalkForwardLight 外汇EA
此内容为免费资源,请登录后查看
0积分
免费资源

如果免费资源下载的文件为TXT文档

请联系站长更新!站长微信:Lv596999  Telegram:@eapoj

“Mql5官网”板块的EA基本都有,大部分是无限制NODLL版,NODLL版本MT1420升级,大多数不可用!这些EA来源为国外花钱买过来的

有需要,请联系站长!

“EA测评”板块资源全部现有,看见不错的,可以联系站长看EA在确定是否收费

“无限制EA”板块,大部分免费,下载文件全部存在,都可以免费下载

站长硬盘EA太多,因大部分时间做交易,做风控,没太多时间更新下载地址,请谅解!

需要更新下载文件,请联系站长微信!国外朋友请联系Telegram。


This is a simplified and effective version of the library for walk forward analysis of trading experts. It collects data about the expert’s trade during the optimization process in the MetaTrader tester and stores them in intermediate files in the “tester/Files” directory. Then these files can be used by the special WalkForwardBuilder script to build a cluster walk forward report and rolling walk forward reports for refining it. The intermediate files should be manually placed to the “MQL4/Files” directory before running the script.

Using this library without the script is meaningless. The script is free.

There is a similar library for MetaTrader 5 – WalkForwardLight MT5. It has more features, in particular, it immediately creates the intermediate files in the “MQL5/Files” directory and generates a report based on them.

A detailed User’s Guide (in Russian) is available in the blog.

This library performs a walk-forward analysis using an unconventional method (details are in the User’s Guide). There is the WalkForwardOptimizer library (also available for MetaTrader 5) for those, who want to adhere to the standard procedure more accurately (as much as possible with an implementation in the built-in tester without third-party programs). It supports more operation modes and provides more customization options, but it is accordingly more complex and more resource-intensive.

The wfL.mqh header file

#import "wfL.ex4"
  int wfl_OnInit(const int cleanUpTimeout);
  void wfl_OnTick();
#import

Example of use in an expert code

#include <wfL.mqh>

int OnInit()
{
  // ... working code
  wfl_OnInit(60);
}

void OnTick()
{
  // ... working code
  wfl_OnTick();
}

图片[1]-Mql5官网 WalkForwardLight 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站
图片[2]-Mql5官网 WalkForwardLight 外汇EA-EA侦探社 - 全球领先的MQL5官网外汇EA机器人MT4自动化交易EA资源免费分享网站

© 版权声明
THE END
喜欢就支持一下吧
点赞54 分享
相关推荐