miss0999 發表於 12-4-30 19:11

cross under(over)語法替代

看完 無無明大在Tradestation是否走完整條Bar, 才會生成買賣條件及下單功能?這篇文章中的提醒,小弟試著照無無明大給的hint去try,可惜還是出現了重複出現出場訊號的問題

小弟方法如下:
if close>=ma20 and time=1345then currentdirection=1;
if close<ma20 and time=1345 then currentdirection=2;
if currentdirection<>lastdirection then begin
   lastdirection=currentdirection;
   Crossed=lastdirection;
end
else
begin
   Crossed=0;
end;

if Crossed=2 then
      exitlong 2 contracts next bar at market;

就小弟的認知中,會出現重複訊號是因為當根bar的close值一直變動(是這樣嘛?),因此我試著去固定時間,可惜還是失敗了XD

請教各位高手,小弟的盲點出在哪邊?? 感謝

頁: [1]
查看完整版本: cross under(over)語法替代