UDAY_C_Santhakumar

Percent Volume Oscillator(by ucsgears)

A good measure to see how excited the herd is, before chasing a move. Very Useful when trading explosive stocks like, FNMA, PLUG, USU. I use this to filter when not to chase. Once you get familiar with this. You can trade the stocks with just Volume and Price.
Also a good filter on how good a breakout is.

Further Reading - tinyurl.com/knzn4p9 (Stockcharts - Chart School)
List of All my Indicators - www.tradingview.com/p/stocks/?sort=recen...
Good Luck

Uday C Santhakumar
Open-source script

In true TradingView spirit, the author of this script has published it open-source, so traders can understand and verify it. Cheers to the author! You may use it for free, but reuse of this code in a publication is governed by House Rules. You can favorite it to use it on a chart.

Disclaimer

The information and publications are not meant to be, and do not constitute, financial, investment, trading, or other types of advice or recommendations supplied or endorsed by TradingView. Read more in the Terms of Use.

Want to use this script on a chart?
// Created by UCSgears, Based on the Percent Price Oscillator (PPO)

study("Advanced Percent Volume Oscillator", shorttitle="UCS_PVO", overlay=false)
src = volume
shortlen=input(21, minval=1, title="Primary Length") 
longlen=input(55, minval=1, title="Base Length")
smooth=input(13, minval=1, title="Signal Length")

short = ema(src, shortlen)
long = ema(src, longlen)
ppo = ((short - long)/long)*100
sig = ema(ppo,smooth)

plot(ppo, title="PPO", color=aqua)
plot(sig, title="signal", color=orange)
plot(ppo-sig,color=#FF006E,style=histogram, color=gray, linewidth = 3)