Hi
Heres the code for the Oddball system :
{ Data1 = Either the SP Ccash S&P 500 index tracking stock or the S&P 500 commodity futures contract. Data2 = Advancing issues of the Nyse. * this was added after article was released to be sure that a buy-sell does not occur on the closing bar. }
if time >830 and time<= 1500 then begin
{ based upon (GMT-06:00) Central Time (US and Canada) - note you may have to adjust for your time zone. }
Inputs: RL(7), BZ(3), SZ(1);
If ROC(Close Data2, RL)>BZ Then Buy;
If ROC(Close Data2, RL)<SZ Then Sell;
end;
Could anyone of you fellas explain in ENGLISH what does this mean and how could anyone make use of it??? I mean where do I put that code? (Hrm, why did they disclose that if it still works???)
Alex
Heres the code for the Oddball system :
{ Data1 = Either the SP Ccash S&P 500 index tracking stock or the S&P 500 commodity futures contract. Data2 = Advancing issues of the Nyse. * this was added after article was released to be sure that a buy-sell does not occur on the closing bar. }
if time >830 and time<= 1500 then begin
{ based upon (GMT-06:00) Central Time (US and Canada) - note you may have to adjust for your time zone. }
Inputs: RL(7), BZ(3), SZ(1);
If ROC(Close Data2, RL)>BZ Then Buy;
If ROC(Close Data2, RL)<SZ Then Sell;
end;
Could anyone of you fellas explain in ENGLISH what does this mean and how could anyone make use of it??? I mean where do I put that code? (Hrm, why did they disclose that if it still works???)
Alex