|
本帖最後由 goodddog 於 15-4-27 00:26 編輯
假設:多單獲利達40點以上, 則回調15點時停利(保住25點獲利). 若未觸發此出場條件, 則獲利40點後每上漲20點, 停利點跟著上移20點. 我的出場程式碼如下(hts):
if Close-Entryprice(0)>=40 and Close-Entryprice(0)<40+20
exitlong next bar at Entryprice(0)+25 stop
end if
if Close-Entryprice(0)>=40+20 then
exitlong next bar at Entryprice(0)+Floor((Close-Entryprice(0)-40)/20)*20 stop
end if
回測執行結果:還不到停利點, 進場下一根K棒開盤就平倉了. 不知錯誤原因為何?
|
|