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.
오픈 소스 스크립트
트레이딩뷰의 진정한 정신에 따라, 이 스크립트의 작성자는 이를 오픈소스로 공개하여 트레이더들이 기능을 검토하고 검증할 수 있도록 했습니다. 작성자에게 찬사를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 코드를 재게시하는 경우 하우스 룰이 적용된다는 점을 기억하세요.
면책사항
해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.
오픈 소스 스크립트
트레이딩뷰의 진정한 정신에 따라, 이 스크립트의 작성자는 이를 오픈소스로 공개하여 트레이더들이 기능을 검토하고 검증할 수 있도록 했습니다. 작성자에게 찬사를 보냅니다! 이 코드는 무료로 사용할 수 있지만, 코드를 재게시하는 경우 하우스 룰이 적용된다는 점을 기억하세요.
면책사항
해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.