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
|