TradingView
Ni6HTH4wK
15 lug 2014 02:44

[LAVA] UNO Overlay 

Bitcoin / U.S. dollarBitstamp

Descrizione

EDIT: Ignore the comments... I can't get the update to show due to hard brackets "[ ]" being censored for some reason.... but they show up in here so this is where the updates will show.

This is the Ultimate (Nonlinear) Oscillator in overlay format. Took me a while to figure out the best configuration and finally found this one. From what I've observed, this is basically a support/resistance line indicator. When the candle moves thru the supporting/resisting line, its a entry/exit point or an indicator that the opposite side should be targeted depending on the market condition. Ignore the wicks as they go thru the line constantly.

Go here to see updates...
pastebin.com/vziz8rzd
Commenti
dsaschad
621$ hahahaaaa...thats true history :P
Ni6HTH4wK
<p>study(title=&quot;[LAVA] Ultimate Nonlinear Oscillator&quot;, shorttitle=&quot;UNO_L&quot;, overlay=true)</p>

<p>length7 = input(7, minval=1) length14 = input(14, minval=1) length28 = input(28, minval=1) mult = input(3.4, type=float, minval=0.001, maxval=50)</p>

<p>average(bp, tr_, length) => sum(bp, length) / sum(tr_, length)</p>

<p>uppers = lowest(high, length14) lowers = highest(low, length14) high_ = max(high, close[1]) low_ = min(low, close[1]) bp = close - low_ tr_ = high_ - low_ tp_ = uppers - lowers avg7 = average(bp, tr_, length7) avg14 = average(bp, tr_, length14) avg28 = average(bp, tr_, length28)</p>

<p>out = 100 * (4*avg7 + 2*avg14 + avg28)/7 upper = uppers-out*(tp_*.014) lower = lowers+out*(tp_*.017) avgs = swma(avg(upper,lower))</p>

<p>source = hl2 dev_ = mult * stdev(source, length14) dostop = (upper*1.001)+dev_ dosbot = (lower*.999)-dev_</p>

<p>p4 = plot(dostop, color=green, title=&quot;DOS TOP&quot;, linewidth=2, style=circles) p2 = plot(upper, color=red, title=&quot;UNO TOP&quot;, linewidth=2) //p1 = plot(avgs, color=#FFFFFF, title=&quot;UNO SLOW&quot;, linewidth=1) p3 = plot(lower, color=lime, title=&quot;UNO BOT&quot;, linewidth=2) p5 = plot(dosbot, color=maroon, title=&quot;DOS BOT&quot;, linewidth=2, style=circles)</p>
Ni6HTH4wK
study(title="\[LAVA\] Ultimate Nonlinear Oscillator", shorttitle="UNO_L", overlay=true)

length7 = input(7, minval=1)
length14 = input(14, minval=1)
length28 = input(28, minval=1)
mult = input(3.4, type=float, minval=0.001, maxval=50)

average(bp, tr_, length) => sum(bp, length) / sum(tr_, length)

uppers = lowest(high, length14)
lowers = highest(low, length14)
high_ = max(high, close\[1\])
low_ = min(low, close\[1\])
bp = close - low_
tr_ = high_ - low_
tp_ = uppers - lowers
avg7 = average(bp, tr_, length7)
avg14 = average(bp, tr_, length14)
avg28 = average(bp, tr_, length28)

out = 100 * (4*avg7 + 2*avg14 + avg28)/7
upper = uppers-out*(tp_*.014)
lower = lowers+out*(tp_*.017)
avgs = swma(avg(upper,lower))

source = hl2
dev_ = mult * stdev(source, length14)
dostop = (upper*1.001)+dev_
dosbot = (lower*.999)-dev_

p4 = plot(dostop, color=green, title="DOS TOP", linewidth=2, style=circles)
p2 = plot(upper, color=red, title="UNO TOP", linewidth=2)
//p1 = plot(avgs, color=#FFFFFF, title="UNO SLOW", linewidth=1)
p3 = plot(lower, color=lime, title="UNO BOT", linewidth=2)
p5 = plot(dosbot, color=maroon, title="DOS BOT", linewidth=2, style=circles)
Ni6HTH4wK
study(title="[LAVA] Ultimate Nonlinear Oscillator", shorttitle="UNO_L", overlay=true)

length7 = input(7, minval=1)
length14 = input(14, minval=1)
length28 = input(28, minval=1)
mult = input(3.4, type=float, minval=0.001, maxval=50)

average(bp, tr_, length) => sum(bp, length) / sum(tr_, length)

uppers = lowest(high, length14)
lowers = highest(low, length14)
high_ = max(high, close[1])
low_ = min(low, close[1])
bp = close - low_
tr_ = high_ - low_
tp_ = uppers - lowers
avg7 = average(bp, tr_, length7)
avg14 = average(bp, tr_, length14)
avg28 = average(bp, tr_, length28)

out = 100 * (4*avg7 + 2*avg14 + avg28)/7
upper = uppers-out*(tp_*.014)
lower = lowers+out*(tp_*.017)
avgs = swma(avg(upper,lower))

source = hl2
dev_ = mult * stdev(source, length14)
dostop = (upper*1.001)+dev_
dosbot = (lower*.999)-dev_

p4 = plot(dostop, color=green, title="DOS TOP", linewidth=2, style=circles)
p2 = plot(upper, color=red, title="UNO TOP", linewidth=2)
//p1 = plot(avgs, color=#FFFFFF, title="UNO SLOW", linewidth=1)
p3 = plot(lower, color=lime, title="UNO BOT", linewidth=2)
p5 = plot(dosbot, color=maroon, title="DOS BOT", linewidth=2, style=circles)
Altro