龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 11:09

【Consecutive Ups】

[code]
inputs:  Price( Close ), ConsecutiveBarsUp( 3 ) ;

if Price > Price[1] then
        Value1 = Value1 + 1                                                     
                                                                        
else
        Value1 = 0 ;

if Value1 >= ConsecutiveBarsUp then
        begin
        Plot1( High, "ConsecUp" ) ;
        Alert ;
        end
else
        NoPlot( 1 ) ;
[/code]

页: [1]