Hello,
I'm new to amibroker.
So I thought it's appropriate to start with an easy MA-crossover system:
FastMA = EMA(C, 25);
SlowMA = EMA(C, 35);
Buy = Cross (FastMA, SlowMA);
Sell = Cross (SlowMA, FastMA);
For backtesting I imported 1Minute Data from Tickstory.(Symbol: DAX30)
I backtested for the last 3 years and the periodicity of 15 Minutes, and then had to found that there are gaps of up to seven month, what shouldn't be possible with these high frequently crossing MA's and that timframe.
Any explanation for this?