PINE LIBRARY
업데이트됨

ZigZagCore

76
ZigZagCore

ZigZagCore is a generic ZigZag engine that works with any user-defined threshold (ATR-based, volatility-based, fixed ticks, etc.).

API
Pine Script®
import ReflexSignals/ZigZagCore/<version> as zz var zz.ZzState state = zz.zz_new() float thr = ... // your threshold in price units state := zz.zz_update(state, thr)


zz_update(state, thr)
  Parameters:
    state (ZzState)
    thr (float)

ZzState
  Fields:
    dir (series int)
    highSinceLow (series float)
    lowSinceHigh (series float)
    lastHighLevel (series float)
    lastLowLevel (series float)
    lastHighIndex (series int)
    lastLowIndex (series int)
    highSinceLowIndex (series int)
    lowSinceHighIndex (series int)
    isNewHigh (series bool)
    isNewLow (series bool)

Directional State
dir = 1 → market is in an upswing
dir = -1 → market is in a downswing
dir = na → initial undecided state

Live Swing Tracking (Unconfirmed Leg)
Continuously updated swing extremes:
highSinceLow — highest price since the last confirmed low
lowSinceHigh — lowest price since the last confirmed high
Their corresponding bar indices

These fields describe the current active swing leg, which updates every bar until a pivot is confirmed.

Pivot Detection
A pivot confirms only when price moves beyond the prior swing extreme by more than threshold. When this occurs, the library sets:
isNewHigh = true (on the detection bar only) and updates lastHighLevel, lastHighIndex
isNewLow = true and updates lastLowLevel, lastLowIndex
릴리즈 노트
v2
Added highBroken and lowBroken fields in ZzState

Updated:
ZzState
  Fields:
    dir (series int)
    highSinceLow (series float)
    lowSinceHigh (series float)
    lastHighLevel (series float)
    lastLowLevel (series float)
    lastHighIndex (series int)
    lastLowIndex (series int)
    highSinceLowIndex (series int)
    lowSinceHighIndex (series int)
    isNewHigh (series bool)
    isNewLow (series bool)
    highBroken (series bool)
    lowBroken (series bool)

면책사항

해당 정보와 게시물은 금융, 투자, 트레이딩 또는 기타 유형의 조언이나 권장 사항으로 간주되지 않으며, 트레이딩뷰에서 제공하거나 보증하는 것이 아닙니다. 자세한 내용은 이용 약관을 참조하세요.