RicardoSantos

[RS]Murrey's Math Lines Box

Murrey's Math Lines Box, top and bottom values of the final box must be entered manually.
开源脚本

本着真正的TradingView精神,该脚本的作者将其开源发布,以便交易者可以理解和验证它。为作者喝彩!您可以免费使用它,但在出版物中重复使用此代码受网站规则的约束。 您可以收藏它以在图表上使用。

免责声明

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

想在图表上使用此脚本?
study(shorttitle="[RS]MMLB", title="[RS]Murreys Math Lines Box", overlay=true)
btop = input(147.66, type=float)
bbot = input(75.555, type=float)

fraction = (btop - bbot) * 0.125

l00 = hline(btop + (fraction * 2), color=black, linewidth=1, title="")
l01 = hline(btop + (fraction * 1), color=black, linewidth=1, title="")
l02 = hline(btop, color=black, linewidth=3, title="8/8: Hardest line to rise above (overbought)")
l03 = hline(btop - (fraction * 1), color=black, linewidth=1, title="7/8: Fast reverse line (weak)")
l04 = hline(btop - (fraction * 2), color=black, linewidth=1, title="6/8: Pivot reverse line")
l05 = hline(btop - (fraction * 3), color=black, linewidth=1, title="5/8: Upper trading range")
l06 = hline(bbot + (fraction * 4), color=black, linewidth=2, title="4/8: Major reversal line")
l07 = hline(bbot + (fraction * 3), color=black, linewidth=1, title="3/8: Lower trading range")
l08 = hline(bbot + (fraction * 2), color=black, linewidth=1, title="2/8: Pivot reverse line")
l09 = hline(bbot + (fraction * 1), color=black, linewidth=1, title="1/8: Fast reverse line (weak)")
l10 = hline(bbot, color=black, linewidth=3, title="0/8: Hardest line to fall below (oversold)")
l11 = hline(bbot - (fraction * 1), color=black, linewidth=1, title="")
l12 = hline(bbot - (fraction * 2), color=black, linewidth=1, title="")

plot(close==0? na : na)