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
This is a client library for the Binance Algo API, enabling developers to interact programmatically with Binance's Algo trading platform. The library provides tools to programmatically leverage Binance in-house algorithmic trading capability to automate order execution strategy, improve execution transparency and give users smart access to the available market liquidity through the REST API:
This is a client library for the Binance Algo SDK API, enabling developers to interact programmatically with Binance's Algo trading platform. The library provides tools to programmatically leverage Binance in-house algorithmic trading capability to automate order execution strategy, improve execution transparency and give users smart access to the available market liquidity through the REST API:
@@ -19,7 +19,6 @@ This is a client library for the Binance Algo API, enabling developers to intera
19
19
-[Documentation](#documentation)
20
20
-[REST APIs](#rest-apis)
21
21
-[Testing](#testing)
22
-
-[Migration Guide](#migration-guide)
23
22
-[Contributing](#contributing)
24
23
-[Licence](#licence)
25
24
@@ -34,7 +33,7 @@ This is a client library for the Binance Algo API, enabling developers to intera
34
33
To use this library, ensure your environment is running Python version **3.9** or later.
35
34
36
35
```bash
37
-
pip install binance-algo
36
+
pip install binance-sdk-algo
38
37
```
39
38
40
39
## Documentation
@@ -43,12 +42,12 @@ For detailed information, refer to the [Binance API Documentation](https://devel
43
42
44
43
### REST APIs
45
44
46
-
All REST API endpoints are available through the [`rest_api`](./src/binance_algo/rest_api/rest_api.py) module. The REST API enables you to fetch market data, manage trades, and access account information. Note that some endpoints require authentication using your Binance API credentials.
45
+
All REST API endpoints are available through the [`rest_api`](./src/binance_sdk_algo/rest_api/rest_api.py) module. The REST API enables you to fetch market data, manage trades, and access account information. Note that some endpoints require authentication using your Binance API credentials.
47
46
48
47
```python
49
48
from binance_common.configuration import ConfigurationRestAPI
50
49
from binance_common.constants importALGO_REST_API_PROD_URL
0 commit comments