Replies: 1 comment 1 reply
-
Hi @andreltr, There is no limit to the library(cryptoQuotes) nrow(
BTC <- get_quote(
ticker = "BTCUSDT",
from = Sys.Date() - 500,
source = "bybit"
)
)
#> [1] 201 Here we extract data from from nrow(
BTC <- get_quote(
ticker = "BTCUSDT",
from = Sys.Date() - 500,
to = Sys.Date(),
source = "bybit"
)
)
#> [1] 501 The only imposed limit in {cryptoQuotes} is on exchange level. You can see the documentation on the wiki about the limits imposed by each exchange. The least restrictive API is Binance, followed by Bybit. But depending on your location these might not be available without a VPN. Created on 2024-06-23 with reprex v2.1.0 |
Beta Was this translation helpful? Give feedback.
-
Hello,
Is there a limit in the from & to values in the get_quote function? I may have read that the from past time parameter would be limited to one year in the past only. If true I'd suggest no limit for this parameter in order to enable analysis of long term positions.
Best.
Beta Was this translation helpful? Give feedback.
All reactions