龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 14:19

【Bollinger Bands SE】

[code]
inputs:
        BollingerPrice( Close ),
        TestPriceUBand( Close ),                                                         
                                     
        Length( 20 ),
        NumDevsUp( 2 ) ;

variables:
        var0( 0 ) ;

var0 = BollingerBand( Close, Length, NumDevsUp ) ;

condition1 = CurrentBar > 1 and TestPriceUBand crosses under var0 ;
if condition1 then
                                                                    
        Sell Short ( "BBandSE" ) next bar at var0 stop ;
[/code]

页: [1]