RicardoSantos

[RS]Murrey's Math Lines Box

Murrey's Math Lines Box, top and bottom values of the final box must be entered manually.
Skript med en öppen källkod

I sann TradingView-anda har författaren publicerat detta skript med öppen källkod så att andra handlare kan förstå och verifiera det. Hatten av för författaren! Du kan använda det gratis men återanvändning av den här koden i en publikation regleras av våra ordningsregler. Du kan ange den som favorit för att använda den i ett diagram.

Frånsägelse av ansvar

Informationen och publikationerna är inte avsedda att vara, och utgör inte heller finansiella, investerings-, handels- eller andra typer av råd eller rekommendationer som tillhandahålls eller stöds av TradingView. Läs mer i Användarvillkoren.

Vill du använda det här skriptet i ett diagram?
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)