UnknownUnicorn2151907

[LamBOTguini][ALERTa2]

This is previous version of + RSI Divergence + Parabolic Sar

Take Profit, Stop Loss, and with ALERTS of course.



Enjoy!



study(title="RSI Divergence", overlay = false)

src_fast = hlc3, len_fast = input(5, minval=1, title="Length Fast RSI")
src_slow = hlc3, len_slow = input(15,minval=1, title="Length Slow RSI")
up_fast = rma(max(change(src_fast), 0), len_fast)
down_fast = rma(-min(change(src_fast), 0), len_fast)
rsi_fast = down_fast == 0 ? 100 : up_fast == 0 ? 0 : 100 - (100 / (1 + up_fast / down_fast))
up_slow = rma(max(change(src_slow), 0), len_slow)
down_slow = rma(-min(change(src_slow), 0), len_slow)
rsi_slow = down_slow == 0 ? 100 : up_slow == 0 ? 0 : 100 - (100 / (1 + up_slow / down_slow))
plotfast = plot(rsi_fast, color=blue)
plotslow = plot(rsi_slow, color=orange)
divergence = rsi_fast - rsi_slow
plotdiv = plot(divergence, color = divergence > 0 ? lime:red, linewidth = 2)
band1 = hline(70,color=green)
band0 = hline(30,color=red)
band = hline(0)
受保护脚本
该脚本是闭源发布的,您可以自由使用它。您可以收藏它以在图表上使用。您无法查看或修改其源代码。
免责声明

这些信息和出版物并不意味着也不构成TradingView提供或认可的金融、投资、交易或其它类型的建议或背书。请在使用条款阅读更多信息。

想在图表上使用此脚本?