Pivot Oscillator


Category:
0
0

Pete,

Can you transfer this code in to thinkscripts?

study(title=”The Pivot Detector Oscillator, by Giorgos E. Siligardos”)
Length_MA = input(200, minval=1)
Length_RSI = input(14, minval=1)
UpBand = input(100, minval=1)
DnBand = input(0)
MidlleBand = input(50)
hline(MidlleBand, color=black, linestyle=dashed)
hline(UpBand, color=red, linestyle=line)
hline(DnBand, color=green, linestyle=line)
xMA = sma(close, Length_MA)
xRSI = rsi(close, Length_RSI)
nRes = iff(close > xMA, (xRSI – 35) / (85-35),
iff(close <= xMA, (xRSI – 20) / (70 – 20), 0))
plot(nRes * 100, color=blue, title=”Pivot Detector Oscillator”)

Marked as spam
Posted by (Questions: 5, Answers: 5)
Asked on March 7, 2019 5:09 pm
159 views
0
( at March 14, 2019 9:04 am)