Skip to content

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