| volume {cryptoQuotes} | R Documentation |
Chart the trading volume
Description
A high-level plotly::plot_ly()-function.
The function adds a subchart with the trading trading.
Usage
volume(...)
Arguments
... |
For internal use. Please ignore. |
Value
An invisible plotly::plot_ly()-object.
Author(s)
Serkan Korkmaz
See Also
Other chart indicators:
add_event(),
alma(),
bollinger_bands(),
chart(),
dema(),
donchian_channel(),
ema(),
evwma(),
fgi(),
hma(),
lsr(),
macd(),
rsi(),
sma(),
smi(),
vwap(),
wma(),
zlema()
Other subchart indicators:
add_event(),
fgi(),
lsr(),
macd(),
rsi(),
smi()
Examples
# script start;
# 1) charting weekly
# BTC using candlesticks
# and indicators
cryptoQuotes::chart(
ticker = BTC,
main = cryptoQuotes::kline(),
sub = list(
cryptoQuotes::volume(),
cryptoQuotes::macd()
),
indicator = list(
cryptoQuotes::bollinger_bands(),
cryptoQuotes::sma(),
cryptoQuotes::alma()
),
options = list(
dark = TRUE,
deficiency = FALSE
)
)
# script end;
[Package cryptoQuotes version 1.3.1 Index]