mirror of
https://github.com/KhizarImran/backtestingfx.git
synced 2026-08-05 16:27:49 +00:00
1.8 KiB
1.8 KiB
Changelog
[Unreleased]
Added
Backtest.optimize()— parallel grid search over a vectorised signal function. Simulations run on native threads with the GIL released (src/optimise.rs); 157x faster than loopingrun()over the same grid.strategy_classis now optional, soBacktest(df, cash=...)works for optimization- Standalone HTML reports (
Backtest.plot()) andexamples/html_report.py - Three-way speed benchmark against backtesting.py (
examples/benchmark.py)
Fixed
- Data access inside
next()is O(1) per bar instead of O(n) — ~2.6x faster
[0.1.1] - 2026-07-05
Added
self.data,self.index,self.cash,self.equityproperties on Strategy- Sharpe ratio in Stats output (unannualized)
__repr__on Position — readable output when printing positions- DataFrame column validation with clear error message
Fixed
- Trade PnL in history now stores net PnL (after exit commission) — per-trade stats were slightly optimistic
Positionpyclass usesfrom_py_objectto fix PyO3 deprecation warning- Removed dead
AttributeErrorswallow in engine.rs
Examples
- Added
examples/sma_cross.py— SMA 10/50 crossover on EURUSD hourly data - Added
examples/compare_bt.py— side-by-side comparison against backtesting.py
[0.1.0] - 2026-06-21
Added
- Event-driven backtesting engine on OHLCV bar data
- Simulated broker with buy, sell, close_all, close_position
- Per-position stop loss and take profit
- Realistic FX lot sizing (0.01 / 0.10 / 1.00) with contract_size and quote_to_account conversion
- Full trade history with PnL per trade
- Stats: return, win rate, avg PnL, best/worst trade, profit factor, max drawdown
- Python API — inherit Strategy, run Backtest
- PyO3 Rust extension with Python wrapper