Skip to content

Commit

Permalink
3.0.13post1
Browse files Browse the repository at this point in the history
  • Loading branch information
DogsTailFarmer committed Sep 13, 2024
1 parent 049d715 commit fe6853d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.13post1 - 2024-09-13
### Fix
* deepsource found style issue

## 3.0.13 - 2024-09-13
### Fix
* Sometimes get error from backtesting on Exit [#81](https://github.com/DogsTailFarmer/martin-binance/issues/81#issue-2465248437)
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__ = "3.0.13"
__version__ = "3.0.13post1"
__maintainer__ = "Jerry Fedorenko"
__contact__ = "https://github.com/DogsTailFarmer"

Expand Down
4 changes: 2 additions & 2 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__ = "3.0.13"
__version__ = "3.0.13post1"
__maintainer__ = "Jerry Fedorenko"
__contact__ = 'https://github.com/DogsTailFarmer'
##################################################################
Expand Down Expand Up @@ -730,7 +730,7 @@ def start(self, profit_f: Decimal = O_DEC, profit_s: Decimal = O_DEC) -> None:
self.grid_only_restart = self.get_time() + GRID_ONLY_DELAY
self.message_log("Waiting for conditions for conversion", color=Style.B_WHITE)
return
elif USE_ALL_FUND and not self.start_after_shift:
if USE_ALL_FUND and not self.start_after_shift:
if self.cycle_buy:
self.deposit_second = fs
self.message_log(f'Use all available funds: {self.deposit_second} {self.s_currency}')
Expand Down

0 comments on commit fe6853d

Please sign in to comment.