Skip to content

Commit 536d007

Browse files
Fixed grammar and spelling (#629)
* Fixed grammar and spelling * Spelling and grammar mistakes
1 parent 6c0deb0 commit 536d007

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ pandas >= 1.2.0
1919
numpy >= 1.20.0
2020
scipy >= 1.6.0
2121
```
22-
The solution - manually install these package before installing alpaca-trade-api. e.g:
22+
The solution - manually install these packages before installing alpaca-trade-api. e.g:
2323
```bash
2424
pip install pandas==1.1.5 numpy==1.19.4 scipy==1.5.4
2525
```
26-
Also note that we do not limit the version of the websockets library, but we advice using
26+
Also note that we do not limit the version of the websockets library, but we advise using
2727
```
2828
websockets>=9.0
2929
```
@@ -73,7 +73,7 @@ You now have 2 pythonic ways to retrieve historical data.<br>
7373
One using the traditional rest module and the other is to use the experimental asyncio module added lately.<br>
7474
Let's have a look at both:<br>
7575

76-
First thing to understand is the new data polling mechanism. You could query up to 10000 items, and the API is using a pagination mechanism to provide you with the data.<br>
76+
The first thing to understand is the new data polling mechanism. You could query up to 10000 items, and the API is using a pagination mechanism to provide you with the data.<br>
7777
You now have 2 options:
7878
* Working with data as it is received with a generator. (meaning it's faster but you need to process each item alone)
7979
* Wait for the entire data to be received, and then work with it as a list or dataframe.
@@ -222,7 +222,7 @@ This module is, and thus may have expansions in the near future to support more
222222
It provides a much faster way to retrieve the historic data for multiple symbols.<br>
223223
Under the hood we use the [aiohttp](https://docs.aiohttp.org/en/stable/) library.<br>
224224
We provide a code sample to get you started with this new approach and it is located [here](examples/historic_async.py).<br>
225-
Follow along the example code to learn more, and to utilize it to your own needs.<br>
225+
Follow along with the example code to learn more, and utilize it for your own needs.<br>
226226

227227
### Live Stream Market Data
228228
There are 2 streams available as described [here](https://alpaca.markets/docs/market-data/#subscription-plans).

0 commit comments

Comments
 (0)