You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+39-6Lines changed: 39 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -223,12 +223,18 @@ It provides a much faster way to retrieve the historic data for multiple symbols
223
223
Under the hood we use the [aiohttp](https://docs.aiohttp.org/en/stable/) library.<br>
224
224
We provide a code sample to get you started with this new approach and it is located [here](examples/historic_async.py).<br>
225
225
Follow along the example code to learn more, and to utilize it to your own needs.<br>
226
-
### Live Stream Data
227
-
There are 2 streams available as described [here](https://alpaca.markets/docs/api-documentation/api-v2/market-data/alpaca-data-api-v2/real-time/).<br>
228
-
The free plan is using the `iex` stream, while the paid subscription is using the `sip` stream.<br>
229
-
You could subscribe to bars, trades or quotes and trade updates as well.<br>
230
-
Under the example folder you could find different code [samples](https://github.com/alpacahq/alpaca-trade-api-python/tree/master/examples/websockets) to achieve different goals. Let's see the basic example<br>
231
-
We present a new Streamer class under `alpaca_trade_api.stream` for API V2.
226
+
227
+
### Live Stream Market Data
228
+
There are 2 streams available as described [here](https://alpaca.markets/docs/market-data/#subscription-plans).
229
+
230
+
The free plan is using the `iex` stream, while the paid subscription is using the `sip` stream.
231
+
232
+
You can subscribe to bars, trades, quotes, and trade updates for your account as well.
233
+
Under the example folder you can find different [code samples](https://github.com/alpacahq/alpaca-trade-api-python/tree/master/examples/websockets)
234
+
to achieve different goals.
235
+
236
+
Here in this basic example, We use the Stream class under `alpaca_trade_api.stream` for API V2 to subscribe to trade
0 commit comments