TradingView
j1O9SB
5 janv. 2016 19:40

Keltner Channels Oscillator 

S&P 500 index of US listed sharesFXCM

Description

Keltner Channels Oscillator
Please post ideas/improvements for a v2.
Commentaires
sriramksharma

kc_mult3=input(3,title="Keltner Channel Third Multiple") // added by me​
ChartSmartTrading
Is it possible to display the kC value in the scale?
sriramksharma
Thank you ! for the novel way of representing the Keltner Channel and that too as an Oscillator with a slight twist to the calculation.

Thought I am very late to see the Indicator, Just by glancing at this, I started liking it very much. In order to identify extremes, I have added the following third levels

kc_threeup=kc_ma+kc_rng*kc_mult3 // added by me
kc_threedn=kc_ma-kc_rng*kc_mult3 // added by me

kc_lvlthreeup=(kc_threeup-kc_ma)/kc_rng // added by me
kc_lvlthreedn=(kc_threedn-kc_ma)/kc_rng // added by me

plot(kc_lvlthreeup,color=#C285E6,style=line,linewidth=1,editable=false) // added by me
plot(kc_lvlthreedn,color=#C285E6,style=line,linewidth=1,editable=false) // added by me
RCP_
Well done
Plus