4.0.10 - 2025-01-24
- Removed backoff decorator from send method of
Order
class
4.0.9 - 2025-01-23
- Fixed
__add__
to return a new Candles object
- Removed tasks attribute from executor class
- Added
initialize_sync
method for synchronous initialization of a symbol
4.0.8 - 2025-01-21
- Fixed
__add__
to return a new Candles object
- Index attribute of a Candle now based on iloc of the Candles DataFrame
4.0.7 - 2025-01-16
- Candles underlying DataFrame is now indexed by datetime.
- Executor runs a strategy via the
run_strategy
method directly withasyncio.run
without creating as a task. Strategy
class now has a initialize method that is called before the strategy is run.
__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.
- Candles timeframe attribute returns the correct TimeFrame object.