Backtest360
Backtest your trading strategy in minutes. Institutional grade.
Backtest360 provides a cloud-based backtesting engine with a clean Python SDK and REST API. Plug in your OHLCV data, define a strategy with plain boolean expressions, and get a full performance report in seconds.
Quick example
import yfinance as yf
from backtest360 import Client, Strategy
df = yf.download("BTC-USD", period="3y", interval="1d",
auto_adjust=False, multi_level_index=False, progress=False)
df.columns = df.columns.str.lower()
result = Client(api_key="b360_...").backtest(
Strategy.rsi_threshold_long(), df
)
print(result.stats["Sharpe"])
result.equity.plot(title="Equity curve")
Where to start
- Installation —
pip install backtest360-client - Authentication — get and use your API key
- Your first backtest — end-to-end walkthrough
- SDK Reference — full
Client,Strategy, and helper class docs - API Reference — interactive REST API browser