request.quandl() - Pine Script Function
request.quandl()
Section titled “request.quandl()”Overview
Section titled “Overview”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.
Syntax
Section titled “Syntax”request.quandl(ticker, gaps, index, ignore_invalid_symbol) → series floatParameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
| ticker | series string | Symbol. 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”. |
Returns
Section titled “Returns”Requested series.
Examples
Section titled “Examples”Example 1
Section titled “Example 1”//@version=6indicator("request.quandl")f = request.quandl("CFTC/SB_FO_ALL", barmerge.gaps_off, 0)plot(f)