Chart is less than 200 Bars

 

Can someone help me, I keep getting a D1 chart is less than 200 bars error on a ea that I am running?

Thanks

 

open your expert

you will find a line looks something like this one

if (Bars < 200) Alert(" ...");

[/PHP]

add // before this line then and decompile the file or save close and restart

the new line should look like this

[PHP]

// if (Bars < 200) Alert(" ...");

Also the expert seems to work on the daily so make sure you attach it to the daily chart , this could the solve problem

Reason: