Skip to content

Documentation / @finchart/indicators / pivotPoints

Function: pivotPoints()

pivotPoints(source, options): PivotPoints

Defined in: indicators/src/factories.ts:1185

Pivot Points (Floor/Classic) — 직전 기간의 고·저·종으로 이번 기간의 축·지지·저항을 긋는다: P=(H+L+C)/3, R1=2P−L, S1=2P−H, R2=P±(H−L), R3=H+2(P−L), S3=L−2(H−P). 레벨은 기간 내 상수(수평 선분)고, 기간 첫 봉은 null이라 기간 사이 대각선이 끊긴다(ADR-0020, TradingView도 안 잇는다). 첫 기간은 직전이 없어 전부 null.

Parameters

source

Source<OHLC>

options

PivotPointsOptions

Returns

PivotPoints