Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 474 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 474 Bytes

CCXT Backtesting Exchange

This is a backtesting simulation that should mirror ccxt unified api calls https://docs.ccxt.com/#/

Installation

pip install ccxt_backtesting_exchange

Usage

import ccxt
from ccxt_backtesting_exchange import Backtester

exchange = Backtester()
exchange.load_markets()

Development

git clone
cd ccxt_backtesting_exchange
poetry install

# Run tests
poetry run pytest

# Run linter
poetry run flake8