請問關於方倉單的寫法? ~
請問如果想掛 "多單成交單+20點" 的限價平倉單 ;那"多單的成交單"的語法要怎麼寫?if marketposition>0 then
setprofittarget(20*bigpointvalue); 真的很謝謝您的回答><" 方便的話能不能幫小弟看看下面這個到底那裡錯了 ~"~
這是我第一次試寫的程式~~~
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; this bar 不能下limit單,你只能用next bar xxxxx limit 謝謝大大的回文 :)在網路爬文有看過,我對這點很是疑惑,那不就要等下一根K棒才能送出委託單嗎?=.= 編譯時產生錯誤=.= 用this bar好像會有問題
頁:
[1]