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
+35-15Lines changed: 35 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@
6
6
# alpaca-trade-api-python
7
7
8
8
`alpaca-trade-api-python` is a python library for the [Alpaca Commission Free Trading API](https://alpaca.markets).
9
-
It allows rapid trading algo development easily, with support for the
9
+
It allows rapid trading algo development easily, with support for
10
10
both REST and streaming data interfaces. For details of each API behavior,
11
11
please see the online [API document](https://docs.alpaca.markets).
12
12
@@ -21,7 +21,7 @@ $ pip3 install alpaca-trade-api
21
21
22
22
## Example
23
23
24
-
In order to call Alpaca's trade API, you need to sign up for a account and obtain API key pairs. Replace <key_id> and <secret_key> with what you get from the web console.
24
+
In order to call Alpaca's trade API, you need to sign up for an account and obtain API key pairs. Replace <key_id> and <secret_key> with what you get from the web console.
25
25
26
26
### REST example
27
27
```python
@@ -42,7 +42,7 @@ The HTTP API document is located at https://docs.alpaca.markets/
42
42
43
43
## API Version
44
44
45
-
API Version now defaults to 'v2', however if you still have a 'v1' account, you may need to specify api_version='v1' to properly use the API until you migrate.
45
+
API Version now defaults to 'v2', however, if you still have a 'v1' account, you may need to specify api_version='v1' to properly use the API until you migrate.
46
46
47
47
## Authentication
48
48
@@ -53,7 +53,7 @@ outlined below.
53
53
54
54
## Alpaca Environment Variables
55
55
56
-
The Alpaca SDK will check the environment for a number of variables which can be used rather than hard-coding these into your scripts.
56
+
The Alpaca SDK will check the environment for a number of variables that can be used rather than hard-coding these into your scripts.
0 commit comments