Blake 發表於 16-6-28 22:33

請教Multicharts一日只成交一筆的寫法



各位大大。以下程式碼如何能一天只成交一筆呢??
假設今日是做多,希望下一個K棒只有sellshort有作用。
假設今日是做空,希望下一個K棒只有buy有作用。


buy next bar at high stop;
sellshort next bar at low stop;

是以下這樣子嗎?有更簡便的寫法嗎?
   if marketposition=>0 then begin;
   sellshort next bar at low stop;
   end;

   if marketposition<=0 then begin;
   buy next bar at high stop;
   end;

謝謝大大的幫忙

blj0511 發表於 16-6-29 10:38

若一天只要一次出手就用
if xxxxxxxxand entriestoday(date)=0 then .........
頁: [1]
查看完整版本: 請教Multicharts一日只成交一筆的寫法