我的問題很簡單,就是如何在一個程式中同時存在 加碼,停損,停利,以下是我寫的程式
加碼 if mp<=-1 and entriestoday(date)<2 then begin sellshort ("D+") next bar at PosTradeEntryPrice(0,currententries-1)-kk stop; end;
停損 if mp<=-1 then begin buytocover ("OUT-D") all share next bar at PosTradeEntryPrice(0,currententries-1)+jj stop; end;
停利 setprofittarget(nn*bigpointvalue); 問題1:每當停利發生時候,就會在加碼的地方多做1口 在MC圖上會這樣
設定上面為
問題2:如果加碼 停損 停利不是以上我這樣寫法,那該如何寫呢,可以詳細指導嗎,謝謝
|