Please Help Me !!!

 

Can You Please Help Me !!! I Have Expert Advisor In MT4 And I Want To BackTest It And Have Possibilty To Log in Multiple TimeFrame Data
Like I Want BackTest In One Hour TimeFrame And Can Get Data Of Others Time Frame Like High , Low ,Open ... , And Value Of Indicator In Time Frame I Want 

I Programmed Expert Advisor Use RSI Of Multiple Time Frame And I want To BackTest It But Backtester In MT4 Shoud Be Use Only One Time Frame Do You Have Any Solution

Regards.

 
Yes just use the call for the desired parameter and specify the timeframe in that call.
 
Backtest at every tick.
 
thank you very  much i will try
 

In tester, choose the lowest timeframe required for your EA to operate.

Declare inputs for the various RSIs:

input int RSI_Period = 14;
input ENUM_TIMEFRAMES RSI_TF_Fast = PERIOD_M5;
input ENUM_TIMEFRAMES RSI_TF_Mid  = PERIOD_M15;
input ENUM_TIMEFRAMES RSI_TF_Slow = PERIOD_H1;

And then retrieve the values like so:

double rsifast=iRSI(_Symbol,RSI_TF_Fast,RSI_Period,0);
 
lippmaje:

In tester, choose the lowest timeframe required for your EA to operate.

Declare inputs for the various RSIs:

And then retrieve the values like so:

thanks

 

I can't get  market watch to populate.

Dr. Norvell

 
Norvell Drawn:

I can't get  market watch to populate.

Dr. Norvell

Close all charts and try again.

Reason: