mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-17 11:25:55 +08:00
1.0 KiB
1.0 KiB
Zipline 0.7.1 Release Notes
Bug Fixes (BUG)
- Fix a bug where the reported returns could sharply dip for random periods of time. PR378
Enhancements (ENH)
-
Account object: Adds an account object to conext to track information about the trading account. PR396
Example:
context.account.settled_cashReturns the settled cash value that is stored on the account object. This value is updated accordingly as the algorithm is run.
-
HistoryContainer can now grow dynamically. PR412
Calls to
historywill now be able to increase the size or change the shape of the history container to be able to service the call.add_historynow acts as a preformance hint to pre-allocate sufficient space in the container. This change is backwards compatible withhistory, all existing algorithms should continue to work as intended.