这个指标是一个相对强弱指数测试版,如果大家对于TB程序化这块有研究,有需要可以下载下来测试运行,研究学习一下,如果对于开拓者TB的初学者,可以在网站找一下基本的TB函数使用方法,参考学习。
Params Numeric Length(14); Numeric Oversold(30); Numeric Overbought(70);Vars Numeric Upvalue(0); Numeric Downvalue(0); Numeric i; Numeric RSvalue; Numeric RSIvalue;Begin If(CurrentBar < Length ) RSIvalue = InvalidNumeric; Else For i = length - 1 DownTo 0 { If(Close > Close[i+1]) { Upvalue = Upvalue + Close; } Else If(Close < Close[i+1]) { Downvalue = Downvalue + Close; } RSvalue = (Upvalue/Length)/(Downvalue/Length); RSIvalue = 100*RSvalue/(1+RSvalue); } PlotNumeric("RSI",RSIvalue); PlotNumeric("超买",Overbought); PlotNumeric("超卖",Oversold);End
Click to rate this post!