anyone feels like backtesting this strategy?

#1
I would like you guys to test this simple strategy on nifty ever since its inception date.

Basically it works on a monthly time frame. The system is based on the price action crossing above or below a 12-period simple moving average.

Code:
// Time frame: Monthly
//
Buy = Cross ( Close, MA(Close, 12) );
Sell = Cross ( MA(Close, 12), Close );
The system is supposed to generate a couple of signals per year :thumb:

(it is up to you to use stop loss)

Hoping to hearing from you soon :clap: