[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Ticki-Tick Strategy



PureBytes Links

Trading Reference Links

I use $TICK and $TIKQ but $TICKI isn't available on Tradestation 7.1 - does
anybody know an alternate way to get $TICKI or its equivalent on TS7?

-----Original Message-----
From: Ian Waugh [mailto:ianwaugh@xxxxxxxxx]
Sent: Thursday, July 03, 2003 8:16 AM
To: omega-list@xxxxxxxxxx
Cc: ianwaugh@xxxxxxxxxxxxxxxxxxx
Subject: Ticki-Tick Strategy


Would anyone like to comment on this little system?

{ 5min bars
data1= YM
data2= $TICKI
data3= $TICK
}

inputs: th(22),tl(-22),tkh(1000),tkl(-750);
setexitonclose;

if c of data2>th and c of data3>tkh then buy next bar at open;
if c of data2<tl and c of data3<tkl then sell next bar at open;


Ian