Skip to content
Algo Trade Analytics Docs

request.seed() - Pine Script Function

Requests the result of an expression evaluated on data from a user-maintained GitHub repository. **Note:**The creation of new Pine Seeds repositories is suspended; only existing repositories are currently supported. See the Pine Seeds documentation on GitHub to learn more.

request.seed(source, symbol, expression, ignore_invalid_symbol, calc_bars_count) → series <type>
NameTypeDescription
sourceseries stringName of the GitHub repository.

Requested series or tuple of series, which may include array/matrix IDs.

//@version=6
indicator("BTC Development Activity")[devAct, devActSMA] = request.seed("seed_crypto_santiment", "BTC_DEV_ACTIVITY", [close, ta.sma(close, 10)])
plot(devAct, "BTC Development Activity")
plot(devActSMA, "BTC Development Activity SMA10", color = color.yellow)