request.seed() - Pine Script Function
request.seed()
Section titled “request.seed()”Overview
Section titled “Overview”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.
Syntax
Section titled “Syntax”request.seed(source, symbol, expression, ignore_invalid_symbol, calc_bars_count) → series <type>Parameters
Section titled “Parameters”| Name | Type | Description |
|---|---|---|
| source | series string | Name of the GitHub repository. |
Returns
Section titled “Returns”Requested series or tuple of series, which may include array/matrix IDs.
Examples
Section titled “Examples”Example 1
Section titled “Example 1”//@version=6indicator("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)