wanwh 發表於 19-3-16 17:01

當沖時要找最近三次交易之盈虧

當沖時, 想找出今天最近三次交易之盈虧. 有沒有 function 可做到?

目的是連虧三次, 被打三巴後, 今日離場, 明日再戰江湖.

timtim01 發表於 19-3-17 15:23

用計數器 會比較好

hcckyy 發表於 19-3-18 07:27

本帖最後由 hcckyy 於 19-3-18 07:30 編輯

var: LossCount(0);

if date<>date then LossCount=0 ;

if ExitsToday(date)>0 and BarsSinceExit(1)=0 and ExitDate(1)=Date and ExitTime(1)=Time then begin
      if PositionProfit(1)<0 and LossCount>=0 then LossCount=LossCount+1
      else LossCount=0;
end ;


if LossCount<3 then begin
   進場條件
end;


wanwh 發表於 19-3-19 01:36

連程式碼也替我寫了, 非常感謝你.
頁: [1]
查看完整版本: 當沖時要找最近三次交易之盈虧