老师您好!我有多单在盈利的情况下我想继续持有多单怎么写程序,谢谢!现在我的程序是这样的:
//持有多单
If Holding>0 then Begin
If Sell1 then begin {平多单}
多平:Sell(1,0,mkt),orderqueue;
End
假如现在我持有多单,一段时间后,价格又满足了我开空的条件,但是
我现在还有盈利5个点,我想继续持有,如果满足开空条件,我只有2个点的盈利,
我就平多头,再开空头。
谢谢老师!
if holding>0 and 盈利>=5 同时 sell1 成立,我想继续持有多单,
if holding>0 and 盈利<=2 同时 sell1 成立,我就执行:
If Holding>0 then Begin
If Sell1 then begin {平多单}
多平:Sell(1,0,mkt),orderqueue;
End
老师这是我过滤的条件,请帮帮我。
那还是这样吧,大于等于5的时候,开空条件成立可以继续持有;
小于5的时候,开空条件成立就 平多 开空。
if holding>0 and 盈利>=5 同时 sell1 成立 then exit(持有多单),
if holding>0 and 盈利<=2 同时 sell1 成立,我就执行:
If Holding>0 then Begin
If Sell1 then begin {平多单}
多平:Sell(1,0,mkt),orderqueue;
End