Here is a simple MACD crossover system:
Buy=Cross(MACD(),Signal() );
Sell=Cross(Signal(),MACD() );
Testing a year of 5 minute data on YM gives excellent results:
Profit factor 2.07
Payoff ratio: 1.98
Net profit/drawdown: 20:1
% Winners: 51%
The results remain excellent with just about any N minutes. This is non-optimized.
What am I missing here? It seems too good to be true.
Buy=Cross(MACD(),Signal() );
Sell=Cross(Signal(),MACD() );
Testing a year of 5 minute data on YM gives excellent results:
Profit factor 2.07
Payoff ratio: 1.98
Net profit/drawdown: 20:1
% Winners: 51%
The results remain excellent with just about any N minutes. This is non-optimized.
What am I missing here? It seems too good to be true.


