OPEN-SOURCE SCRIPT
Updated

Multi-timeframe Pivot Point

157
This indicator is a lightweight indicator designed to display higher timeframe pivot levels on your chart.
It helps traders quickly identify key support and resistance zones derived from higher timeframes (such as daily or weekly pivots) while analyzing lower timeframes (e.g., 15m or 1h charts).

Calculation Logic

This indicator uses the classic pivot point formula, calculated from high, low, and close values:

Pine Script®
PP = (High + Low + Close) / 3 R1 = 2 * PP - Low S1 = 2 * PP - High R2 = PP + (High - Low) S2 = PP - (High - Low) R3 = R1 + (High - Low) S3 = S1 - (High - Low)


Additionally, it includes breakout levels:

Pine Script®
HBOP = PP + PP + (High - Low) - Low LBOP = PP + PP - (High - Low) - High


Release Notes
fix bug
Release Notes
fix rendering bug
Release Notes
add plot labels
Release Notes
duplicated plots are removed.
Release Notes
clean code

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.