Skip to content
Algo Trade Analytics Docs

ticker.pointfigure() - Pine Script Function

Creates a ticker identifier for requesting Point & Figure values.

ticker.pointfigure(symbol, source, style, param, reversal) → simple string
NameTypeDescription
symbolsimple stringSymbol ticker identifier.

String value of ticker id, that can be supplied to request.security function.

//@version=6
indicator("ticker.pointfigure", overlay=true)
pnf_tickerid = ticker.pointfigure(syminfo.tickerid, "hl", "Traditional", 1, 3)pnf_close = request.security(pnf_tickerid, timeframe.period, close)
plot(pnf_close)