龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-2 13:34

【SummationIf】

[code]inputs: Test( truefalseseries ), PriceValue( numericseries ), Len( numericsimple ) ;
variables: var0( 0 ) ;

var0 = 0 ;

for Value1 = 0 to Len - 1
        begin
        if Test[Value1] then
                var0 = var0 + PriceValue[Value1] ;
        end ;

SummationIf = var0 ;
[/code]

页: [1]