Skip to content

Commit 48b4b5b

Browse files
authored
Merge pull request #2874 from Drakkar-Software/dev
Dev merge
2 parents 67fd3c1 + abd763f commit 48b4b5b

File tree

5 files changed

+38
-5
lines changed

5 files changed

+38
-5
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,38 @@ 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+
## [2.0.8] - 2025-01-27
10+
### Added
11+
- [Profiles] Trailing grid default profile
12+
- [GridTrading] Trading up and down options
13+
- [TradingView] Support LEVERAGE parameter to update position leverage value
14+
- [TradingView] Send REDUCE_ONLY param to exchange orders
15+
- [Exchanges] Support exchange-side spot market stop losses for Binance, Coinbase, Kucoin and BingX
16+
- [Exchanges] Add http, https and ws proxy support
17+
- [Exchanges] Add http requests counter
18+
- [Exchanges] Add request counter
19+
- [Exchanges] Add custom exchange domain support
20+
### Updated
21+
- [GPTService] Improve custom LLM docs
22+
- [GPTService] Support empty token when calling custom LLMs
23+
- [Orders] Make chained orders more reliable
24+
- [Exchanges] Reduce log size for html content errors
25+
### Fixed
26+
- [FuturesTrading] Fix position sync issues
27+
- [TradingModes] Fix rare sell orders creation issues
28+
- [GridTrading & StaggeredOrders] Fix many live & backtesting quantity and price related issues
29+
- [DCATradingMode] Fix a rare init issue
30+
- [MarketPrice] Fix mark price issue
31+
- [Backtesting] Fix futures trading backtesting issues
32+
- [MEXC] Many fixes
33+
- [BingX] Order fixes
34+
- [Exchanges] Fix rare incorrect stop orders parsing
35+
- [Exchanges] Fix rare cancel order errors
36+
- [Exchanges] Fix rare exchange request spamming issues on looping errors
37+
- [Community] Fix expired session error
38+
- [Community] Fix /community page error
39+
- [Community] Fix SSL-related issues
40+
941
## [2.0.7] - 2024-10-26
1042
### Added
1143
- [TradingView] Support multiple take profits

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot [2.0.7](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md)
1+
# OctoBot [2.0.8](https://github.com/Drakkar-Software/OctoBot/blob/master/CHANGELOG.md)
22
[![PyPI](https://img.shields.io/pypi/v/OctoBot.svg?logo=pypi)](https://pypi.org/project/OctoBot)
33
[![Downloads](https://pepy.tech/badge/octobot/month)](https://pepy.tech/project/octobot)
44
[![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot.svg?logo=docker)](https://hub.docker.com/r/drakkarsoftware/octobot)

octobot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@
1616

1717
PROJECT_NAME = "OctoBot"
1818
AUTHOR = "Drakkar-Software"
19-
VERSION = "2.0.7" # major.minor.revision
19+
VERSION = "2.0.8" # major.minor.revision
2020
LONG_VERSION = f"{VERSION}"

octobot/community/community_analysis.py

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

2020
import octobot_commons.logging as logging
2121
import octobot_commons.constants as commons_constants
22+
import octobot_commons.aiohttp_util as aiohttp_util
2223
import octobot.constants as constants
2324
import octobot.community.identifiers_provider as identifiers_provider
2425

@@ -41,7 +42,7 @@ async def _get_stats(endpoint_by_key):
4142

4243
async def get_stats(url, stats_key):
4344
try:
44-
async with aiohttp.ClientSession() as session:
45+
async with aiohttp_util.ssl_fallback_aiohttp_client_session(url) as session:
4546
async with session.get(url) as resp:
4647
if resp.status > 299:
4748
logger.error(f"Error when getting community status : error code={resp.status}")

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Drakkar-Software requirements
22
OctoBot-Commons==1.9.70
3-
OctoBot-Trading==2.4.149
3+
OctoBot-Trading==2.4.152
44
OctoBot-Evaluators==1.9.7
55
OctoBot-Tentacles-Manager==2.9.16
66
OctoBot-Services==1.6.23
77
OctoBot-Backtesting==1.9.7
88
Async-Channel==2.2.1
9-
trading-backend==1.2.33
9+
trading-backend==1.2.34
1010

1111
## Others
1212
colorlog==6.8.0

0 commit comments

Comments
 (0)