Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ This will be the final release with support for the dYdX v3 (legacy) API. Future
- Fixed Polymarket duplicate trade_id for multi-order fills (#3450), thanks for reporting @santivazq
- Fixed Polymarket `load_all_async` ignoring time-based filters (#3475), thanks @Coyote-Den
- Fixed `MarketIfTouchedOrder` fill price during bar processing to use trigger price instead of bar extremes, thanks @HaakonFlaaronning
- Fixed Avoid OOM error in backtest by setting optimize_file_loading default value to False.

### Internal Improvements
- Added support for setting cache database adapter in cache and `LiveNode` (#3401), thanks @filipmacek
Expand Down
2 changes: 1 addition & 1 deletion nautilus_trader/persistence/catalog/parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ def backend_session(
where: str | None = None,
session: DataBackendSession | None = None,
files: list[str] | None = None,
optimize_file_loading: bool = True,
optimize_file_loading: bool = False,
**kwargs: Any,
) -> DataBackendSession:
"""
Expand Down