OPEN-SOURCE SCRIPT
Gold Golden Zone with TP/SL

1. Higher Timeframe (HTF) Trend
The script fetches the close and an EMA (user‑defined length) from a higher timeframe (e.g., 1‑hour).
HTF Bullish → HTF close > HTF EMA
HTF Bearish → HTF close < HTF EMA
This ensures that entries align with the broader market direction.
2. Swing Detection for Fibonacci
Uses ta.pivothigh and ta.pivotlow with a user‑defined lookback (fib_swing_length) to find the most recent major swing high and low.
Stores both the price and the bar index of these swings.
Determines the current trend structure:
Uptrend when the last swing low occurred before the last swing high.
Downtrend when the last swing high occurred before the last swing low.
3. Fibonacci Golden Zone
For an uptrend, the Fibonacci levels are drawn from the swing low (0%) to the swing high (100%).
For a downtrend, they are drawn from the swing high (0%) to the swing low (100%).
The Golden Zone is the area between the 50% and 61.8% retracement levels – highlighted with a yellow box.
The script stores the exact values of the 50% and 61.8% levels (fib_50 and fib_618).
4. Position in Golden Zone
Long condition (in_golden_zone_uptrend):
low <= fib_50 and high >= fib_618
(Price overlaps the 50%–61.8% region during an uptrend)
Short condition (in_golden_zone_downtrend):
high >= fib_50 and low <= fib_618
(Price overlaps the 50%–61.8% region during a downtrend)
5. Raw Signals
Raw Long = HTF Bullish AND in_golden_zone_uptrend
Raw Short = HTF Bearish AND in_golden_zone_downtrend
6. Optional Confirmation Triggers
If the user enables use_confirmation, the signal must also satisfy one of the following:
Structure Break
Bullish: close above the last minor swing low (structure_lookback)
Bearish: close below the last minor swing high
Momentum Candle
Body of the current candle > 70% of its total range (indicating strong directional momentum)
Confirmation helps filter out false entries in choppy markets.
The script fetches the close and an EMA (user‑defined length) from a higher timeframe (e.g., 1‑hour).
HTF Bullish → HTF close > HTF EMA
HTF Bearish → HTF close < HTF EMA
This ensures that entries align with the broader market direction.
2. Swing Detection for Fibonacci
Uses ta.pivothigh and ta.pivotlow with a user‑defined lookback (fib_swing_length) to find the most recent major swing high and low.
Stores both the price and the bar index of these swings.
Determines the current trend structure:
Uptrend when the last swing low occurred before the last swing high.
Downtrend when the last swing high occurred before the last swing low.
3. Fibonacci Golden Zone
For an uptrend, the Fibonacci levels are drawn from the swing low (0%) to the swing high (100%).
For a downtrend, they are drawn from the swing high (0%) to the swing low (100%).
The Golden Zone is the area between the 50% and 61.8% retracement levels – highlighted with a yellow box.
The script stores the exact values of the 50% and 61.8% levels (fib_50 and fib_618).
4. Position in Golden Zone
Long condition (in_golden_zone_uptrend):
low <= fib_50 and high >= fib_618
(Price overlaps the 50%–61.8% region during an uptrend)
Short condition (in_golden_zone_downtrend):
high >= fib_50 and low <= fib_618
(Price overlaps the 50%–61.8% region during a downtrend)
5. Raw Signals
Raw Long = HTF Bullish AND in_golden_zone_uptrend
Raw Short = HTF Bearish AND in_golden_zone_downtrend
6. Optional Confirmation Triggers
If the user enables use_confirmation, the signal must also satisfy one of the following:
Structure Break
Bullish: close above the last minor swing low (structure_lookback)
Bearish: close below the last minor swing high
Momentum Candle
Body of the current candle > 70% of its total range (indicating strong directional momentum)
Confirmation helps filter out false entries in choppy markets.
開源腳本
秉持TradingView一貫精神,這個腳本的創作者將其設為開源,以便交易者檢視並驗證其功能。向作者致敬!您可以免費使用此腳本,但請注意,重新發佈代碼需遵守我們的社群規範。
免責聲明
這些資訊和出版物並非旨在提供,也不構成TradingView提供或認可的任何形式的財務、投資、交易或其他類型的建議或推薦。請閱讀使用條款以了解更多資訊。
開源腳本
秉持TradingView一貫精神,這個腳本的創作者將其設為開源,以便交易者檢視並驗證其功能。向作者致敬!您可以免費使用此腳本,但請注意,重新發佈代碼需遵守我們的社群規範。
免責聲明
這些資訊和出版物並非旨在提供,也不構成TradingView提供或認可的任何形式的財務、投資、交易或其他類型的建議或推薦。請閱讀使用條款以了解更多資訊。