Skip to content

Commit 831ad43

Browse files
authored
Merge pull request #1982 from Drakkar-Software/dev
Master merge
2 parents 4e949a7 + 7cb8080 commit 831ad43

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
*It is strongly advised to perform an update of your tentacles after updating OctoBot. (start.py tentacles --install --all)*
88

9+
## [0.4.5] - 2022-06-12
10+
### Fixed
11+
- [Trading modes] Stop loss are not created after instantly filled limit orders
12+
- [Exchanges] Multiple backtesting issues
13+
- [WebInterface] Portfolio value sorting
14+
915
## [0.4.4] - 2022-06-01
1016
### Added
1117
- [Exchanges] Future trading engine

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot [0.4.4](https://octobot.click/gh-changelog)
1+
# OctoBot [0.4.5](https://octobot.click/gh-changelog)
22
[![PyPI](https://img.shields.io/pypi/v/OctoBot.svg)](https://octobot.click/gh-pypi)
33
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/e07fb190156d4efb8e7d07aaa5eff2e1)](https://app.codacy.com/gh/Drakkar-Software/OctoBot?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot&utm_campaign=Badge_Grade_Dashboard)[![Downloads](https://pepy.tech/badge/octobot/month)](https://pepy.tech/project/octobot)
44
[![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg)](https://octobot.click/gh-dockerhub)
@@ -14,7 +14,7 @@
1414
[![Telegram News](https://img.shields.io/badge/telegram-news-blue.svg)](https://t.me/OctoBot_Project)
1515
[![Twitter](https://img.shields.io/twitter/follow/DrakkarsOctobot.svg?label=Follow&style=social)](https://octobot.click/gh-twitter)
1616
<p align="center">
17-
<img src="../assets/octopus.svg" alt="Octobot Logo" height="400" width="400">
17+
<img src="../assets/OctoBot-icon-only.svg" alt="Octobot Logo" height="400" width="400">
1818
</p>
1919

2020
![Web Interface](../assets/web-interface.gif)

octobot/community/errors_upload/error_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self, error: Exception, title: str, timestamp: float, metrics_id: s
3131
self.type: str = self.error.__class__.__name__ if self.error else ""
3232
self.stacktrace: list = traceback.format_exception(
3333
etype=type(self.error), value=self.error, tb=self.error.__traceback__
34-
)[1:] if self.error else []
34+
)[1:] if self.error and isinstance(self.error, Exception) else []
3535

3636
def to_dict(self) -> dict:
3737
"""

octobot/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
PROJECT_NAME = "OctoBot"
2121
AUTHOR = "DrakkarSoftware"
22-
SHORT_VERSION = "0.4.4" # major.minor.revision
22+
SHORT_VERSION = "0.4.5" # major.minor.revision
2323
PATCH_VERSION = "" # patch : pX
2424
VERSION_DEV_PHASE = "" # alpha : a / beta : b / release candidate : rc
2525
VERSION_PHASE = "" # XX

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ cython==0.29.26
33

44
# Drakkar-Software requirements
55
OctoBot-Commons==1.7.8
6-
OctoBot-Trading==2.2.5
6+
OctoBot-Trading==2.2.6
77
OctoBot-Evaluators==1.7.3
88
OctoBot-Tentacles-Manager==2.7.0
99
OctoBot-Services==1.3.1

0 commit comments

Comments
 (0)