indicators and backtest

 

Hi guys

Why i don't see my EA  indicators  on the chart in backtest ?


 
frank75:

Hi guys

Why i don't see my EA  indicators  on the chart in backtest ?


Because you don't attach them to the chart?

Create a template with the indicators and name it the same as the EA and you should see them in visual mode

 
There's no need to attach manually to the chart . Usually when backtest finisced the indicators used into EA appear automatically in to the chart . Usually.
but sometimes NO .. Why ?

 
frank75:
There's no need to attach manually to the chart . Usually when backtest finisced the indicators used into EA appear automatically in to the chart . Usually.
but sometimes NO .. Why ?
If an indicator uses objects instead of buffers, these can be deleted during OnDeinit() so they will not be visible at the end of the test.
 

it's very simple indicators :


double bollinger_low_1      = iBands(NULL,1,20,1.5,20,PRICE_CLOSE,MODE_LOWER,1);

 

i get it .. I have a different timefrime from backtester and EA . 30min in EA 1 min in backtester period

Reason: