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)