Mars 發表於 13-3-7 17:58

請問關於方倉單的寫法? ~

請問如果想掛 "多單成交單+20點" 的限價平倉單 ;那"多單的成交單"的語法要怎麼寫?

曾永政 發表於 13-3-7 18:47

if marketposition>0 then
setprofittarget(20*bigpointvalue);

Mars 發表於 13-3-7 19:35

真的很謝謝您的回答><"   方便的話能不能幫小弟看看下面這個到底那裡錯了 ~"~
這是我第一次試寫的程式~~~

input : BTime(1500),ETime(0200);

var :High(0),Low(0);

if BTime < Time and Time <ETime then begin

         if price > high+4 point then buy this bar at high-2 points limit;

         if price < low-4 point then sell this bar at low+2 points limit;
      
end;

if marketposition = 1 then begin

         exitlong this bar at EntryPrice + 3 points limit;

if marketposition = -1 then begin
         
         exitshort this bar at EntryPrice - 3 points limit;

end;

coolhd 發表於 13-3-7 21:57

this bar 不能下limit單,你只能用next bar xxxxx limit

Mars 發表於 13-3-7 22:38

謝謝大大的回文 :)在網路爬文有看過,我對這點很是疑惑,那不就要等下一根K棒才能送出委託單嗎?=.=

Mars 發表於 13-3-8 00:13

編譯時產生錯誤=.=

GOGA 發表於 13-3-8 10:01

用this bar好像會有問題
頁: [1]
查看完整版本: 請問關於方倉單的寫法? ~