forked from Th0rgal/binance.py
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a18aecf
commit 49088c4
Showing
8 changed files
with
42 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## 2.1.9 2024-04-14 | ||
### Fix | ||
* Creating and manage asynchronous tasks | ||
|
||
## 2.1.8 2024-04-08 | ||
### Update | ||
* `Bitfinex`: add logging for `cancel_order()` and `cancel_all_orders()` methods | ||
|
@@ -125,15 +129,15 @@ | |
## 1.4.9b2 2024-02-05 | ||
### Fix | ||
* Binance: `TransferToMaster`: sentence `Email address should be encoded. e.g. [email protected] should be encoded into | ||
alice%40test.com` from API docs the are False, must be `content += urlencode(kwargs["params"], safe="@")` | ||
alice%40test.com` from API docs they are False, must be `content += urlencode(kwargs["params"], safe="@")` | ||
|
||
### Update | ||
* HTX: changed deprecated endpoint "v1/common/symbols" to "v1/settings/common/market-symbols" | ||
* Binance: `GET /api/v3/exchangeInfo` from response remove deprecated `quotePrecision` | ||
|
||
## 1.4.8 2024-02-02 | ||
### Added for new features | ||
* Binance: `TransferToMaster` now can be used for collect assets on the sub-account | ||
* Binance: `TransferToMaster` now can be used for collect assets on the subaccount | ||
|
||
## 1.4.7.post6 2024-01-31 | ||
### Fix | ||
|
@@ -165,7 +169,7 @@ alice%40test.com` from API docs the are False, must be `content += urlencode(kwa | |
|
||
## v1.4.4 2023-12-13 | ||
### Update | ||
* Before send cancel order result checking if it was be executed and generating trade event | ||
* Before send cancel order result checking if it was being executed and generating trade event | ||
* Rollback 1.4.3 | ||
- Binance: in create Limit order parameters adding parameter "selfTradePreventionMode": "NONE" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
__contact__ = "https://github.com/DogsTailFarmer" | ||
__email__ = "[email protected]" | ||
__credits__ = ["https://github.com/DanyaSWorlD"] | ||
__version__ = "2.1.8" | ||
__version__ = "2.1.9" | ||
|
||
from pathlib import Path | ||
import shutil | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
crypto-ws-api==2.0.8 | ||
crypto-ws-api==2.0.9 | ||
pyotp==2.9.0 | ||
simplejson==3.19.2 | ||
toml~=0.10.2 | ||
|