龙听期货论坛's Archiver

C
+
+


 微信: QQ:

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

【Pivot High】

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

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

页: [1]