pline {cryptoQuotes} | R Documentation |
A high-level plotly::plot_ly()
-function for charting
Open, High, Low and Close prices.
pline(price = "close", ...)
price |
|
... |
For internal use. Please ignore. |
An invisible plotly::plot_ly()
-object.
Serkan Korkmaz
Other price charts:
chart()
,
kline()
,
ohlc()
# script start;
# Charting BTC using
# line charts with closing price
# as main chart
cryptoQuotes::chart(
ticker = BTC,
main = cryptoQuotes::pline(),
sub = list(
cryptoQuotes::volume()
)
)
# script end;