龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 14:16

【_StpOrLim Exit】

[code]
[IntrabarOrderGeneration = false]
inputs:
        SellOrCover( 1 ),                                                  
        StopOrLimit( 1 ),                                                  
        TriggerPrice( 100 ),                              
        ExitQuantity( 1000 ) ;

condition1 = SellOrCover = 1 and StopOrLimit = 1 ;
if condition1 then
        Sell ExitQuantity shares next bar at TriggerPrice stop
else
begin
        condition1 = SellOrCover = 1 and StopOrLimit <> 1 ;
         if condition1 then
                Sell ExitQuantity shares next bar at TriggerPrice limit
        else
        begin
                condition1 = SellOrCover <> 1 and StopOrLimit = 1 ;
                if condition1 then
                        Buy To Cover ExitQuantity shares next bar at TriggerPrice stop
                else
                begin
                        condition1 = SellOrCover <> 1 and StopOrLimit <> 1 ;               
                        if condition1 then
                                Buy To Cover ExitQuantity shares next bar at TriggerPrice limit ;
                end;
        end;
end;
[/code]

页: [1]