From 06b856f4e912e0c5d1caee513ad9c02f5222a4db Mon Sep 17 00:00:00 2001 From: Exocet92 <79667065+Jimmy7892@users.noreply.github.com> Date: Wed, 24 Jun 2026 02:09:28 +0200 Subject: [PATCH] docs: add Discord link and make Quick Start runnable (#1) Add the community Discord to the header links, and switch the Quick Start from mbt.DataStore(data_root="data") (which assumes pre-ingested data) to mbt.ingest(provider="binance", ...) so it runs as-is. Verified on 0.8.0. --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dedd20a..d6e5692 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@
Website · Documentation · - Examples + Examples · + Discord
--- @@ -65,7 +66,8 @@ config = mbt.BacktestConfig( warmup_bars=30, ) -store = mbt.DataStore(data_root="data", metadata_db="metadata/metadata.sqlite") +store = mbt.ingest(provider="binance", symbol="BTCUSDT", symbol_id=1, + start="2022-01-01T00:00:00Z", end="2025-01-01T00:00:00Z", interval="1h") result = mbt.run(strategy, config, store) print(result.summary()) ```