2025-01-16 19:32:41 +01:00
|
|
|
# Changelog
|
|
|
|
|
|
2025-01-23 18:18:18 +01:00
|
|
|
## [4.0.9](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.8) - 2025-01-23
|
|
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
|
|
- Fixed `__add__` to return a new Candles object
|
|
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
|
|
- Removed tasks attribute from executor class
|
|
|
|
|
|
|
|
|
|
### Added
|
|
|
|
|
|
|
|
|
|
- Added `initialize_sync` method for synchronous initialization of a symbol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## [4.0.8](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.8) - 2025-01-21
|
2025-01-21 00:51:02 +01:00
|
|
|
|
|
|
|
|
### Fixed
|
|
|
|
|
|
|
|
|
|
- Fixed `__add__` to return a new Candles object
|
|
|
|
|
|
|
|
|
|
### Changed
|
|
|
|
|
|
|
|
|
|
- Index attribute of a Candle now based on iloc of the Candles DataFrame
|
|
|
|
|
|
2025-01-16 19:51:08 +01:00
|
|
|
## [4.0.7](https://github.com/Ichinga-Samuel/aiomql/releases/tag/v4.0.7) - 2025-01-16
|
2025-01-16 19:32:41 +01:00
|
|
|
|
|
|
|
|
### Changed
|
2025-01-21 00:51:02 +01:00
|
|
|
-
|
2025-01-16 19:32:41 +01:00
|
|
|
- Candles underlying DataFrame is now indexed by datetime.
|
|
|
|
|
- Executor runs a strategy via the `run_strategy` method directly with `asyncio.run` without creating as a task.
|
|
|
|
|
- `Strategy` class now has a initialize method that is called before the strategy is run.
|
|
|
|
|
|
|
|
|
|
### Added
|
2025-01-21 00:51:02 +01:00
|
|
|
-
|
2025-01-16 19:32:41 +01:00
|
|
|
- `__add__` and `__iadd__` dunder methods for addition and inplace addition of dataframes or series objects to the Candles object.
|
|
|
|
|
- `add` method for adding dataframes or series objects to the Candles object.
|
|
|
|
|
|
|
|
|
|
### Fixed
|
2025-01-21 00:51:02 +01:00
|
|
|
-
|
2025-01-16 19:32:41 +01:00
|
|
|
- Candles timeframe attribute returns the correct TimeFrame object.
|