龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-2 10:28

【LastSession】

[code]inputs:
        SessionType( numericsimple ),                                
        XDay( numericsimple ) ;               

variables:
        var0( 0 ),
        var1( 0 ) ;

var0 = SessionCount( SessionType ) ;
var1 = 0 ;
for Value1 = var0 downto 1
                                                                                      
        begin
        condition1 = SessionStartDay( SessionType, Value1 ) = XDay
         or SessionEndDay( SessionType, Value1 ) = XDay ;
        if condition1 then
                begin
                var1 = Value1 ;
                Value1 = 1 ;                                          
                end ;
        end ;

LastSession = var1 ;
[/code]

页: [1]