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
สคริปต์โอเพนซอร์ซ

ด้วยจิตวิญญาณของ TradingView อย่างแท้จริง ผู้เขียนสคริปต์นี้ได้เผยแพร่เป็นโอเพนซอร์ส เพื่อให้ผู้ค้าสามารถเข้าใจและตรวจสอบได้ ไชโยให้กับผู้เขียน! คุณสามารถใช้ได้ฟรี แต่การใช้รหัสนี้ซ้ำในสิ่งพิมพ์อยู่ภายใต้กฎระเบียบการใช้งาน คุณสามารถตั้งเป็นรายการโปรดเพื่อใช้บนชาร์ตได้

คำจำกัดสิทธิ์ความรับผิดชอบ

ข้อมูลและบทความไม่ได้มีวัตถุประสงค์เพื่อก่อให้เกิดกิจกรรมทางการเงิน, การลงทุน, การซื้อขาย, ข้อเสนอแนะ หรือคำแนะนำประเภทอื่น ๆ ที่ให้หรือรับรองโดย TradingView อ่านเพิ่มเติมที่ เงื่อนไขการใช้บริการ

ต้องการที่จะใช้สคริปต์นี้บนชาร์ตใช่ไหม?
// 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)