OPEN-SOURCE SCRIPT
Price Change Sentiment Index [tradeviZion]

Price Change Sentiment Index
A technical indicator that measures price changes relative to the day's range.
Indicator Overview
Inputs
Reading the Indicator
Technical Details
Pine Script®
Usage Notes
Settings Guide
This indicator is a technical analysis tool. Please conduct your own research and testing before use.
A technical indicator that measures price changes relative to the day's range.
Indicator Overview
- Normalizes price changes on a 0-100 scale
- Uses a smoothing period for signal clarity
- Shows potential overbought/oversold conditions
Inputs
- Smoothing Period (default: 3)
- Show Background Colors (on/off)
- Overbought Level (default: 75)
- Oversold Level (default: 25)
Reading the Indicator
- Values above 75: Price change showing strong upward movement
- Values below 25: Price change showing strong downward movement
- Around 50: Neutral price movement
Technical Details
// Core calculation
changePct = (currClose - prevClose) / (high - low)
normalized = 50 + (changePct * 50)
smoothedNormalized = ta.sma(normalizedClamped, smoothingPeriod)
Usage Notes
- Best used with other technical analysis tools
- Adjustable smoothing period affects signal sensitivity
- Background colors highlight extreme readings
- Works on any timeframe
Settings Guide
- Smoothing Period:
- Lower values (1-3): More responsive
- Higher values (5-10): Smoother output - Visual Settings: Toggle background colors
- Levels: Adjust overbought/oversold thresholds
This indicator is a technical analysis tool. Please conduct your own research and testing before use.
開源腳本
本著TradingView的真正精神,此腳本的創建者將其開源,以便交易者可以查看和驗證其功能。向作者致敬!雖然您可以免費使用它,但請記住,重新發佈程式碼必須遵守我們的網站規則。
TradeVizion™
For our premium indicators! whop.com/tradevizion/
For our premium indicators! whop.com/tradevizion/
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。
開源腳本
本著TradingView的真正精神,此腳本的創建者將其開源,以便交易者可以查看和驗證其功能。向作者致敬!雖然您可以免費使用它,但請記住,重新發佈程式碼必須遵守我們的網站規則。
TradeVizion™
For our premium indicators! whop.com/tradevizion/
For our premium indicators! whop.com/tradevizion/
免責聲明
這些資訊和出版物並不意味著也不構成TradingView提供或認可的金融、投資、交易或其他類型的意見或建議。請在使用條款閱讀更多資訊。