mql20520:
This has never worked in the Strategy Tester.
Dear community,
I have build a EA last year with following code snipped:
But in the new version of MT 5 this snipped doesn't work in the strategy tester.
But it works in the debug mode on real data.
Have someone an idea?
Thank's for your help.
Do you know a workaround to work with more charts in the Strategy Tester?
You can have additional charts automatically open if you refer to the underlying data in your code.
Could you give me a example code snipped?
mql20520 #:
Could you give me a example code snipped?
Could you give me a example code snipped?
I Have solved this problem with this code:
//"You can have additional charts automatically open if you refer to the underlying data in your code." by Alain Verleyen void ChartOpenOnTester(string symbol, ENUM_TIMEFRAMES timeframe) { double tempValueOnlyToOpenThisChartOnTester = iClose(symbol,timeframe,0); }
usage:
void ChartOpenOnTester(string symbol, ENUM_TIMEFRAMES timeframe) { double tempValueOnlyToOpenThisChartOnTester = iClose(symbol,timeframe,0); } int OnInit() { ChartOpenOnTester(Symbol(),PERIOD_M10); return INIT_SUCCEEDED; }
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Dear community,
I have build a EA last year with following code snipped:
But in the new version of MT 5 this snipped doesn't work in the strategy tester.
But it works in the debug mode on real data.
Have someone an idea?
Thank's for your help.