龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 13:06

【Pivot Low】

[code]
inputs: Price( Low ), LeftStrength( 3 ), RightStrength( 3 ) ;

condition1 = PivotLowVSBar( 1, Price, LeftStrength, RightStrength, RightStrength + 1 ) <> -1 ;
if condition1
then
        begin
        Plot1[RightStrength]( Low[RightStrength], "PivotLo" ) ;
        Alert ;
        end
else
        NoPlot( 1 ) ;
[/code]

页: [1]