From f0b47e9d8fd42c4036cac494130d05876013d801 Mon Sep 17 00:00:00 2001 From: hiohiohio Date: Tue, 2 Jul 2024 15:43:30 +0900 Subject: [PATCH] doc: update README.md to introduce stock/options historical data client (#479) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 719dd6cf..4d2dc2fb 100644 --- a/README.md +++ b/README.md @@ -207,7 +207,7 @@ market_order = trading_client.submit_order( **Querying Historical Bar Data** -You can request bar data via the HistoricalDataClients. In this example, we query daily bar data for “BTC/USD” and “ETH/USD” since July 1st 2022. You can convert the response to a multi-index pandas dataframe using the `.df` property. +You can request bar data via the HistoricalDataClients. In this example, we query daily bar data for “BTC/USD” and “ETH/USD” since July 1st 2022. You can convert the response to a multi-index pandas dataframe using the `.df` property. There are `StockHistoricalDataClient` and `OptionHistoricalDataClient` that you also could use to fetch equity/options historical data. ```python from alpaca.data.historical import CryptoHistoricalDataClient