|
allan nathan
2015-07-03 18:00:00
|
|
Hi,
I am running a system using rank,and then looking at the Regimes...
Specifically,I am looking at Middle term Bullish with GSPC> SMA(c,100)..
when I code it myself
b=getseries("^gspc",gspc,close);
goodma=b>sma(b,100);
the results are drastically different.here is the system
rank1=Comp(perf(close,days),"Rank",1,close>2);
b=getseries("^gspc",gspc,close);
goodma=b>sma(b,100);
buy=rank1<11 and goodma;
shouldnt that system be the exact same as
buy=rank1<11; and looking at the midle term Regime?
Thanks,
allan
|
|