Installation
Requirements
- Python 3.9+
- An API key from backtest360.com
Install the SDK
pip install backtest360-client
The SDK depends only on httpx and pandas. No other runtime dependencies.
Verify the install
from backtest360 import Client
print(Client(api_key="b360_...").version())
# {'version': '0.5.3', 'min_client': '0.1.0a1', ...}
Optional: data fetching
The SDK does not bundle a data provider — you supply your own OHLCV DataFrame. Common choices:
pip install yfinance # Yahoo Finance
pip install tiingo # Tiingo
pip install pandas-datareader # FRED, Quandl, etc.