Skip to content
Algo Trade Analytics Docs

request.quandl() - Pine Script Function

Note: This function has been deprecated due to the API change from NASDAQ Data Link. Requests for “QUANDL” symbols are no longer valid and requests for them return a runtime error.

request.quandl(ticker, gaps, index, ignore_invalid_symbol) → series float
NameTypeDescription
tickerseries stringSymbol. Note that the name of a time series and Quandl data feed should be divided by a forward slash. For example: “CFTC/SB_FO_ALL”.

Requested series.

//@version=6
indicator("request.quandl")
f = request.quandl("CFTC/SB_FO_ALL", barmerge.gaps_off, 0)
plot(f)