Files
backtestingfx/python/backtest.py
T

83 lines
2.3 KiB
Python
Raw Normal View History

2026-06-20 17:43:19 +01:00
from typing import Any
import backtestingfx as _rust # type: ignore
2026-06-14 17:48:44 +01:00
import pandas as pd
class Strategy:
2026-06-20 17:43:19 +01:00
def __init__(self):
self._bars: Any = None
self._bar: Any = None
self._broker: Any = None
2026-06-14 17:48:44 +01:00
def init(self):
pass
def next(self):
pass
def buy(self, lot_size, stop_loss=None, take_profit=None):
2026-06-20 17:43:19 +01:00
self._broker.buy(
self._bar.close, lot_size, self._bar.timestamp, stop_loss, take_profit
)
2026-06-14 17:48:44 +01:00
def sell(self, lot_size, stop_loss=None, take_profit=None):
2026-06-20 17:43:19 +01:00
self._broker.sell(
self._bar.close, lot_size, self._bar.timestamp, stop_loss, take_profit
)
2026-06-14 17:48:44 +01:00
def close_all(self):
self._broker.close_all(self._bar.close, self._bar.timestamp)
def close_position(self, id):
self._broker.close_position(id, self._bar.close, self._bar.timestamp)
class _Adapter:
def __init__(self, strategy):
self._strategy = strategy
def init(self, bars):
2026-06-20 17:43:19 +01:00
self._strategy._bars = bars
2026-06-14 17:48:44 +01:00
self._strategy.init()
def next(self, bar, broker):
self._strategy._bar = bar
self._strategy._broker = broker
self._strategy.next()
class Backtest:
def __init__(self, df, strategy_class, cash=10000.0, commission=0.0, spread=0.0):
self._df = df
self._strategy_class = strategy_class
self._cash = cash
self._commission = commission
self._spread = spread
def _to_bars(self):
bars = []
for idx, row in self._df.iterrows():
if isinstance(idx, pd.Timestamp):
ts = int(idx.timestamp())
else:
2026-06-20 17:43:19 +01:00
ts = int(pd.Timestamp(row["timestamp"]).timestamp()) # type: ignore
bars.append(
_rust.Bar( # type: ignore
timestamp=ts,
open=float(row["open"]),
high=float(row["high"]),
low=float(row["low"]),
close=float(row["close"]),
volume=float(row.get("volume", 0.0)),
)
)
2026-06-14 17:48:44 +01:00
return bars
def run(self):
bars = self._to_bars()
2026-06-20 17:43:19 +01:00
engine = _rust.Engine(bars, self._cash, self._commission, self._spread) # type: ignore
2026-06-14 17:48:44 +01:00
strategy = self._strategy_class()
return engine.run(_Adapter(strategy))