龙听期货论坛's Archiver

C
+
+


 微信: QQ:

龙听 发表于 2022-11-3 15:21

【RSI SE】

[code]
inputs:  Price( Close ), Length( 14 ), OverBought( 70 ) ;
variables:  var0( 0 ) ;

var0 = RSI( Price, Length ) ;

condition1 = Currentbar > 1 and var0 crosses under OverBought ;
if condition1 then                                                                    
        Sell Short ( "RsiSE" ) next bar at market ;
[/code]

页: [1]