hi
i would like to know if there is a possibility to do backtest on an offline chart
i have an EA place on a regular 1minute chart
that trace an offline chart base on constant range bar
i need to do back test but i see only regular time chart on setting in back test.
is there a way to make it on a offline chart ?
thank you
You may convert your offline chart to a testable one. It is not quite comfortable, so I use a script for it.

- 2015.03.20
- admin@ovo.cz
- ovo.cz
hi, first thank you for answering.
i have a probleme when a slide the script on my offline chart. i got the msg:
"unsupported legacy version. use b509-compatible script"
what i'm suppose to do here ?
thank you
hi, first thank you for answering.
i have a probleme when a slide the script on my offline chart. i got the msg:
"unsupported legacy version. use b509-compatible script"
what i'm suppose to do here ?
thank you
The generator probably created obsolete hst file format, which was used prior build 541. Though reading v.400 format chart was re-enabled in the MT4 some time later, yet I had no reason for its implementation to the script (it would be the same effort as fixing the generator the other way round).
The generator probably created obsolete hst file format, which was used prior build 541. Though reading v.400 format chart was re-enabled in the MT4 some time later, yet I had no reason for its implementation to the script (it would be the same effort as fixing the generator the other way round).
does it's work with your range_bar indicator ? http://ovo.cz/offline-charts-for-mt4/range-bars/
you really have a nice indicator range bar, i'm gonna use the try period and see.
thank you
does it's work with your range_bar indicator ? http://ovo.cz/offline-charts-for-mt4/range-bars/
you really have a nice indicator range bar, i'm gonna use the try period and see.
thank you
hi
i would like to know if there is a possibility to do backtest on an offline chart
i have an EA place on a regular 1minute chart
that trace an offline chart base on constant range bar
i need to do back test but i see only regular time chart on setting in back test.
is there a way to make it on a offline chart ?
thank you
Hi!
Today I found the solution.
In external params add the following line:
extern int TimeFrame = 2; // if you use M2 offline chart
For indicators use the following (for example RSI):
myRSI = iRSI(Symbol(), TimeFrame, RSIPeriod, PRICE_CLOSE, 0);
In strategy tester select M1 timeframe. All your indies get values from M2 offline chart, however you backtest on M1.
I tried it, and it works.
Sorry for my English.
Regards
G
Hi!
Today I found the solution.
In external params add the following line:
extern int TimeFrame = 2; // if you use M2 offline chart
For indicators use the following (for example RSI):
myRSI = iRSI(Symbol(), TimeFrame, RSIPeriod, PRICE_CLOSE, 0);
In strategy tester select M1 timeframe. All your indies get values from M2 offline chart, however you backtest on M1.
I tried it, and it works.
Sorry for my English.
Regards
G
Hello,
Can you help me, how I open to edit external param to add the line.
Thanks,

- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
You agree to website policy and terms of use
hi
i would like to know if there is a possibility to do backtest on an offline chart
i have an EA place on a regular 1minute chart
that trace an offline chart base on constant range bar
i need to do back test but i see only regular time chart on setting in back test.
is there a way to make it on a offline chart ?
thank you