Skip to content

Commit

Permalink
1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
DogsTailFarmer committed Sep 19, 2023
1 parent f59fff5 commit d717f46
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## 1.3.5 2023-09-19
### Fix
* Fix: Incorrect calculated depo volume for grid update, not include held grid orders volume
* Fix: tmp converted when restored MS_ORDERS from list to dict (inter-version compatibility)
* Up requirements for exchanges-wrapper to 1.3.7

### Update
* Restored MS_ORDERS, convert from list to dict (inter-version compatibility), clear

## 1.3.4rc5-1 2023-08-24
### Update
Expand Down
2 changes: 1 addition & 1 deletion martin_binance/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__author__ = "Jerry Fedorenko"
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
__license__ = "MIT"
__version__ = "1.3.5b4"
__version__ = "1.3.5"
__maintainer__ = "Jerry Fedorenko"
__contact__ = "https://github.com/DogsTailFarmer"

Expand Down
3 changes: 2 additions & 1 deletion martin_binance/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Jerry Fedorenko"
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
__license__ = "MIT"
__version__ = "1.3.5b4"
__version__ = "1.3.5"
__maintainer__ = "Jerry Fedorenko"
__contact__ = 'https://github.com/DogsTailFarmer'
##################################################################
Expand Down Expand Up @@ -1242,6 +1242,7 @@ def restore_strategy_state(self, strategy_state: Dict[str, str] = None, restore=
elif no_orders:
self.restart = True
self.message_log("Restore, no orders, restart", tlg=True)
self.sum_amount_first = self.sum_amount_second = f2d(0)
self.start()
elif not GRID_ONLY and not self.tp_order_id and self.check_min_amount():
self.message_log("Restore, replace TP", tlg=True)
Expand Down
2 changes: 1 addition & 1 deletion martin_binance/margin_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__author__ = "Jerry Fedorenko"
__copyright__ = "Copyright © 2021 Jerry Fedorenko aka VM"
__license__ = "MIT"
__version__ = "1.3.5b3"
__version__ = "1.3.5"
__maintainer__ = "Jerry Fedorenko"
__contact__ = "https://github.com/DogsTailFarmer"

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dynamic = ["version", "description"]
requires-python = ">=3.8"

dependencies = [
"exchanges-wrapper~=1.3.6.post1.dev1",
"exchanges-wrapper==1.3.7",
"margin-strategy-sdk==0.0.11",
"jsonpickle==3.0.2",
"psutil==5.9.5",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exchanges-wrapper~=1.3.6.post1.dev1
exchanges-wrapper==1.3.7
margin-strategy-sdk==0.0.11
jsonpickle==3.0.2
psutil==5.9.5
Expand Down

0 comments on commit d717f46

Please sign in to comment.