Skip to content

Commit 23bb134

Browse files
committed
[Version] v2.4.237
1 parent 0accdb0 commit 23bb134

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [2.4.237] - 2024-12-12
8+
### Added
9+
[Trades] add get_real_or_estimated_trade_fee
10+
[TradingMode] add is_first_trading_mode_on_this_matrix
11+
[TradingMode] add get_is_using_trading_mode_on_exchange
12+
[Websockets] add additional config support to ws exchanges
13+
### Updated
14+
[Orders] make apply_inactive_orders more flexible
15+
### Fixed
16+
[Orders] fix partially fill channel notification
17+
718
## [2.4.236] - 2024-12-08
819
### Tools
920
[Tools] use gather_waiting_for_all_before_raising

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# OctoBot-Trading [2.4.236](https://github.com/Drakkar-Software/OctoBot-Trading/blob/master/CHANGELOG.md)
1+
# OctoBot-Trading [2.4.237](https://github.com/Drakkar-Software/OctoBot-Trading/blob/master/CHANGELOG.md)
22
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/903b6b22bceb4661b608a86fea655f69)](https://app.codacy.com/gh/Drakkar-Software/OctoBot-Trading?utm_source=github.com&utm_medium=referral&utm_content=Drakkar-Software/OctoBot-Trading&utm_campaign=Badge_Grade_Dashboard)
33
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Trading.svg)](https://pypi.python.org/pypi/OctoBot-Trading/)
44
[![Coverage Status](https://coveralls.io/repos/github/Drakkar-Software/OctoBot-Trading/badge.svg?branch=master)](https://coveralls.io/github/Drakkar-Software/OctoBot-Trading?branch=master)

octobot_trading/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# License along with this library.
1616

1717
PROJECT_NAME = "OctoBot-Trading"
18-
VERSION = "2.4.236" # major.minor.revision
18+
VERSION = "2.4.237" # major.minor.revision

octobot_trading/personal_data/trades/trade_factory.py

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

1818
import octobot_commons.logging as logging
1919
import octobot_trading.personal_data.trades.trade as trade_class
20-
import octobot_trading.personal_data.orders.order as order_class
20+
import octobot_trading.personal_data.orders.order as order_class # pylint: disable=unused-import
2121
import octobot_trading.personal_data.orders.order_factory as order_factory
2222
import octobot_trading.enums as enums
2323
import octobot_trading.constants as constants

0 commit comments

Comments
 (0)