This commit is contained in:
Ichinga Samuel
2025-01-24 14:28:17 +01:00
parent f9dace624d
commit fb960e2fdd
3 changed files with 8 additions and 3 deletions
+7 -1
View File
@@ -1,6 +1,12 @@
# Changelog # Changelog
## [4.0.9](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.8) - 2025-01-23 ## [4.0.10](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.10) - 2025-01-24
### Changed
- Removed backoff decorator from send method of `Order` class
## [4.0.9](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.9) - 2025-01-23
### Fixed ### Fixed
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "aiomql" name = "aiomql"
version = "4.0.9" version = "4.0.10"
readme = "README.md" readme = "README.md"
requires-python = ">=3.11" requires-python = ">=3.11"
classifiers = [ classifiers = [
-1
View File
@@ -93,7 +93,6 @@ class Order(_Base, TradeRequest):
raise OrderError(f"Order check failed for {self.symbol}") raise OrderError(f"Order check failed for {self.symbol}")
return OrderCheckResult(**res._asdict()) return OrderCheckResult(**res._asdict())
@backoff_decorator
async def send(self) -> OrderSendResult: async def send(self) -> OrderSendResult:
"""Send a request to perform a trading operation from the terminal to the trade server. """Send a request to perform a trading operation from the terminal to the trade server.