Skip to content

Commit

Permalink
2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DogsTailFarmer committed Dec 13, 2023
1 parent 2dca0ee commit 4882f75
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2.0.7 - 2023-12-13
### Update
* Up requirements for exchanges-wrapper==1.4.4

## 2.0.6 - 2023-12-12
### Update
* Up requirements for exchanges-wrapper==1.4.3 [fixed #42](https://github.com/DogsTailFarmer/exchanges-wrapper/issues/42)
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__ = "2.0.6"
__version__ = "2.0.7"
__maintainer__ = "Jerry Fedorenko"
__contact__ = "https://github.com/DogsTailFarmer"

Expand Down
5 changes: 2 additions & 3 deletions 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__ = "2.0.5"
__version__ = "2.0.7"
__maintainer__ = "Jerry Fedorenko"
__contact__ = 'https://github.com/DogsTailFarmer'
##################################################################
Expand Down Expand Up @@ -579,8 +579,7 @@ def save_strategy_state(self, return_only=False) -> Dict[str, str]:
elif self.tp_order_hold.get('timestamp'):
time_diff = int(self.get_time() - self.tp_order_hold['timestamp'])
if time_diff > HOLD_TP_ORDER_TIMEOUT:
self.message_log(f"Exist hold TP order for"
f" {'Sell' if self.cycle_buy else 'Buy'} {self.tp_order_hold['amount']}"
self.message_log(f"Exist hold TP order on {self.tp_order_hold['amount']}"
f" {self.f_currency if self.cycle_buy else self.s_currency}\n"
f"Available first:{fund_f} {self.f_currency}\n"
f"Available second:{fund_s} {self.s_currency}\n"
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.4.3",
"exchanges-wrapper==1.4.4",
"margin-strategy-sdk==0.0.11",
"jsonpickle==3.0.2",
"psutil==5.9.6",
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.4.3
exchanges-wrapper==1.4.4
margin-strategy-sdk==0.0.11
jsonpickle==3.0.2
psutil==5.9.6
Expand Down

0 comments on commit 4882f75

Please sign in to comment.