龙听期货论坛's Archiver

C
+
+


 微信: QQ:

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

【SmoothedAverage】

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

if CurrentBar = 1 then
        SmoothedAverage = Average( PriceValue, Len )
else
        SmoothedAverage = ( Summation( PriceValue, Len + 1 ) - SmoothedAverage[1] ) / Len ;
[/code]

页: [1]