請問MT5 EA測試問題

 

請教各位大大

測試時有一個FORWARD(轉寄)

那個由甚麼用呢?

 

https://www.mql5.com/zh/articles/3279

MetaTrader 5 中的自定义前瞻优化
MetaTrader 5 中的自定义前瞻优化
  • 2017.09.20
  • Stanislav Korotky
  • www.mql5.com
这完全重复了典型的前瞻测试, 除了一个明显的细微差别: S 段的交易不是以初始存款开始, 而是 EA 在 W 时段内赚取的金额。此功能限制函数库仅适用于固定手数的策略。不过, 您可能会同意, 当分析任意 EA 时, 如果您打算在后续阶段启用资金管理, 使用固定手数进行验证也是强制性过程。 现在, 我们只需要适应这种连续前瞻优化机制。为了实现这一点, 请确保仅在每个窗口 W 中执行交易结果优化, 同时忽略所有后续测试周期 S。在测试器设置中选择 自定义优化条件, 并在函数库中基于当前窗口 W 内的交易计算, 然后使用 OnTester 事件处理程序从测试器中返回它。此外, 函数应在每个后续测试区间 S 里计算并保存交易结果。.优化完成后, 随着步进 i 的移动, 我们会得到每个窗口 W...
 
Jinsong Zhang:

https://www.mql5.com/zh/articles/3279


感謝幫忙解答

不過他寫得有點拗口

我在學習一下


謝謝幫忙

 

要么你看英文版

https://www.mql5.com/en/articles/3279

Custom Walk Forward optimization in MetaTrader 5
Custom Walk Forward optimization in MetaTrader 5
  • 2017.09.15
  • Stanislav Korotky
  • www.mql5.com
Algorithmic trading consists not only of planning and development of trading robots but also (to a greater extent) testing and verifying the survivability of ideas and algorithms implemented in them. MetaTrader 5 provides the built-in tester for optimizing Expert Advisors on historical data. This tool is often indispensable in everyday...