龙听期货论坛's Archiver

C
+
+


 微信: QQ:

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

【SummationFC】

[code]inputs:
        PriceValue( numericseries ),
        Len( numericsimple ) ;                                         

variables:
        var0( 0 ) ;

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

SummationFC = var0 ;
[/code]

页: [1]