Ni6HTH4wK

Relative Price Difference [LAVA]

200
EDIT: Look below for updates to the script.

EDIT: After several updates to this script, I think it's safe to say it will work with all timelines. Using hand drawn trendlines, it can predict tops and bottoms with pretty good accuracy.

Shows a change in the relative price difference via percentage on a 0 horizontal. Added a bollinger band to help identify weak areas (orange). If orange starts showing, the current price direction is strong but can reverse harshly. If you are in a weak position, exit here. Otherwise, don't enter a trade after/during orange sessions until a full cycle (up/dn > 1% without orange) has completed. The main line indicator fluctuates according to the price difference. 1% horizontal lines are added to help identify profit taking spots or OTE zones. Ensure the 1% line is crossed completely before you decide to enter/exit. Cross points are identified with crosses if you missed your window, this is the last spot to exit, enter. This indicator doesn't work that well with small time intervals. As always, use more than one indicator to ensure your decision is right. (The colors are ugly so change them if you wish! :)
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(title="[LAVA] Relative Price Difference", shorttitle="RPD_L")
len = input(14, minval=1, title="Length")
mult = input(2.0, minval=0.001, maxval=50)
zero = 0.000001

hi = (high/highest(len))*100
lo = (low/lowest(len))*100
opens = (open+open[len])/2
closes = (close+close[len])/2
raw = open>close ? hi-lo : lo-hi
smoothed = swma(raw)
RPD = vwma(smoothed,len/2)
dev = mult * stdev(RPD, len)
upper = RPD + dev
lower = RPD - dev

plot(RPD, color=aqua)
hline(1, title='top line', color=#303030, linestyle=dotted, linewidth=1)
hline(-1, title='top line', color=#303030, linestyle=dotted, linewidth=1)

p0 = plot(zero, color=black)
p1 = plot(upper, color=black)
p2 = plot(lower, color=black)
fill(p0, p1, color=yellow, transp=70)
fill(p0, p2, color=red, transp=70)

LOOKUP = cross(RPD,zero) ? 1.2 : na
LOOKDN = cross(RPD,zero) ? -1.2 : na
plot(LOOKUP, title="Bingo", style=cross, linewidth=2, color=gray)
plot(LOOKDN, title="Bingo", style=cross, linewidth=2, color=gray)