龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-1 11:01

【AB_RowHeightCalc】

[code]
inputs:
        ApproxNumRows( numericsimple ),                                          
                                                                                          
                                                                                       
                                                          
        RangeAvgLen( numericsimple ) ;

variables:
        var0( 0 ),
        var1( MinMove / PriceScale ) ;

condition1 = PriceScale > 0 and ApproxNumRows > 0 ;
if condition1 then
        begin
        var0 = Average( Range, RangeAvgLen ) ;
        AB_RowHeightCalc = MaxList( var1, var0 / ApproxNumRows ) ;
        end
else
        AB_RowHeightCalc = .1 ;

[/code]

页: [1]