volume {cryptoQuotes} | R Documentation |
Volume indicators are technical analysis tools used to analyze trading volume, which represents the number of shares or contracts traded in a financial market over a specific period of time. These indicators provide valuable insights into the strength and significance of price movements.
volume(internal = list())
internal |
An empty list. Used for internal purposes. Ignore. |
Invisbly returns a plotly object.
Other chart indicators:
add_event()
,
alma()
,
bollinger_bands()
,
chart()
,
dema()
,
ema()
,
evwma()
,
fgi()
,
hma()
,
lsr()
,
macd()
,
rsi()
,
sma()
,
vwap()
,
wma()
,
zlema()
Other subcharts:
add_event()
,
fgi()
,
lsr()
,
macd()
,
rsi()
# script: scr_charting
# date: 2023-10-25
# author: Serkan Korkmaz, serkor1@duck.com
# objective: Charting in general
# script start;
## charting the klines
## with indicators as
## subcharts
chart(
ticker = BTC,
main = kline(),
sub = list(
volume(),
macd()
),
indicator = list(
bollinger_bands(),
sma(),
alma()
),
options = list(
dark = TRUE,
deficiency = FALSE
)
)
## charting the MACD-indicator
## with klines as subcharts
chart(
ticker = BTC,
main = macd(),
sub = list(
volume(),
kline()
),
indicator = list(
bollinger_bands(),
sma()
),
options = list(
dark = TRUE,
deficiency = FALSE
)
)
# script end;