mirror of
https://github.com/Ichinga-Samuel/aiomql.git
synced 2026-07-27 20:27:43 +00:00
91590496ef
Fix backoff_decorator logic to reset number of retries correctly
2.2 KiB
2.2 KiB
Changelog
4.0.14 - 2025-03-24
Added
- Add visualization for
Candlesobject. - Update
Configclass
4.0.13 - 2025-03-24
Fixed
- Fixed Candles inplace addition and addition to be only between candles objects
- Index of Candles object dataframe is now a timezone-aware DateTimeIndex
- Add method can accept addition of either a Series, DataFrame, or Candle, object
Added
- A to_series method to both Tick and Candle Classes
- Index attribute is now strictly for integer-based indexing
- index attribute maps to the underlying label-based indexing of the dataframe
4.0.12 - 2025-03-24
Fixed
- Use correct error handling decorator for modify_stops in backtester
4.0.10 - 2025-01-24
Changed
- Removed backoff decorator from send method of
Orderclass
4.0.9 - 2025-01-23
Fixed
- Fixed
__add__to return a new Candles object
Changed
- Removed tasks attribute from executor class
Added
- Added
initialize_syncmethod for synchronous initialization of a symbol
4.0.8 - 2025-01-21
Fixed
- Fixed
__add__to return a new Candles object
Changed
- Index attribute of a Candle now based on iloc of the Candles DataFrame
4.0.7 - 2025-01-16
Changed
- Candles underlying DataFrame is now indexed by datetime.
- Executor runs a strategy via the
run_strategymethod directly withasyncio.runwithout creating as a task. Strategyclass now has a initialize method that is called before the strategy is run.
Added
__add__and__iadd__dunder methods for addition and inplace addition of dataframes or series objects to the Candles object.addmethod for adding dataframes or series objects to the Candles object.
Fixed
- Candles timeframe attribute returns the correct TimeFrame object.