PureBytes Links
Trading Reference Links
|
> So based on that question, what legal issues are involved when the same
easy language code on TS 4.0 generates different results on TS2000i as
indicated by a number of members of this list.
Yet have to see one example!
Maybe some minor modifcation could be necessary under some conditions, but I
have not seen the problem.
THE YOU HAVE NO EYEBALLS !!!!!!!!!!!!!!!
THE RED CHICKEN HAS PLUCKED THEM OUT !!!!!!!!!!!!!!!
MB
Rgds
PO
www.sirtrade.com
input:smrisk(1500);
If MarketPosition=0 and bflag=1 then buy("rev2 buy");
If MarketPosition=0 and sflag=1 then sell("rev2 sell");
if MarketPosition=-1 and OpenPositionProfit<= -smrisk then
exitshort("flatshort")market; {next bar on close stop;}
if MarketPosition=1 and OpenPositionProfit<= -smrisk then
exitlong("flatlong")market; {next bar on close stop;}
|