龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-2 11:26

【OBV】

[code]if BarType >= 2 and BarType < 5 then                              
        begin
        if Close > Close[1] then
                OBV = OBV[1] + Volume
        else if Close < Close[1] then
                OBV = OBV[1] - Volume
        else
                OBV = OBV[1] ;
        end
else                                                                              
                                                                                 
        begin
        if Close > Close[1] then
                OBV = OBV[1] + Ticks
        else if Close < Close[1] then
                OBV = OBV[1] - Ticks
        else
                OBV = OBV[1] ;
        end ;
[/code]

页: [1]