Description Usage Arguments Examples
View source: R/technical_indicators.R
Get technical indicators
1 2 3 4 5 6 7 8 | technical_indicators(
symbol,
indicator = "SMA",
resolution = "D",
from = today() - 14,
to = today(),
...
)
|
symbol |
Stock ticker |
indicator |
Selected indicator |
resolution |
1-minute, 5-minute, 15-minute, 30-minute, 60-minute, daily, weekly and monthly |
from |
Begin date - default 30-days from today |
to |
End date - current date |
1 2 3 4 5 6 7 8 9 10 11 12 13 | technical_indicators('NVDA')
technical_indicators('NVDA', indicator = 'SMA')
technical_indicators('NVDA', indicator = 'EMA')
technical_indicators('NVDA', indicator = 'TEMA')
technical_indicators('NVDA', indicator = 'RSI')
technical_indicators('NVDA', indicator = 'BBANDS')
technical_indicators('NVDA', resolution = 1, indicator = 'BBANDS')
technical_indicators('NVDA', resolution = 5)
technical_indicators('NVDA', resolution = 15)
technical_indicators('NVDA', resolution = 30)
technical_indicators('NVDA', resolution = 60)
technical_indicators('NVDA', resolution = 'D')
technical_indicators('NVDA', from = lubridate::today() - 365, resolution = 'W', indicator = 'BBANDS')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.