Skip to main content

Programmable cryptocurrency trading platform — write your own strategies, run on your own hardware

Project description

Spirit

PyPI Python License Downloads

Spirit is a programmable Python platform for algorithmic cryptocurrency trading — a playground for building and testing your own strategies. It runs on your own hardware, talks to exchanges directly, and you own the strategy logic end-to-end.

The framework is open source under Apache-2.0. Spirit handles the orchestration: market data, order placement, lifecycle hooks, and crash recovery. As your strategies mature, Plus and Pro open up access to our custom technical indicators and cloud storage for backtesting.


Quick start

On Ubuntu / Debian (and most modern Linux):

sudo apt install -y pipx
pipx ensurepath
pipx install spirit-platform

Then open a new shell and run:

python3 -m spirit.setup     # interactive setup wizard
spirit --mode paper         # start paper trading

Other install paths (venv, etc.) and troubleshooting: see INSTALL.md.

Run the wizard once (it asks your tier, instance name, and an optional Kraken API key for live trading), pick one of the bundled examples (sma_crossover or macd_demo) or drop your own file in ~/.spirit/strategies/, and Spirit starts paper-trading.

To go live, swap --mode paper for --mode live once you've sanity-checked the paper P&L.

OHLC data ownership (v2.2.4+). Spirit's local OHLC store is yours — Free instances persist candles in ~/.spirit/<instance>/spirit.db. When Spirit starts up after downtime, it fills the gap (up to 12 hours of 1-minute candles per boot) from the exchange automatically. For longer gaps, run python3 -m spirit.backfill <kraken-csv> once with a Kraken CSV export. The boot catch-up adds ~15–20 seconds for a typical multi-pair multi-interval config; configure with SPIRIT_OHLC_CATCHUP_INTERVALS (default 60).


Tiers and pricing

See www.tradebot.live/pricing for tier details, pricing, and what each level adds.


Writing a strategy

Strategies subclass BaseStrategy and implement evaluate_trade(). Everything else is optional; opt into lifecycle hooks as you need them.

from spirit.strategies.base import BaseStrategy

class MyStrategy(BaseStrategy):
    def evaluate_trade(self, pair: str, mode: str = "test", **kwargs):
        # Return {"entry": bool, "exit": bool, "details": {...}}
        return {"entry": False, "exit": False, "details": {}}

Optional hooks the orchestrator will call when configured: on_monitoring_tick, on_entry_confirmed, on_exit_completed, validate_readiness, get_data_requirements. Properties for tier-aware behaviour: uses_risk_gate, required_capabilities. See the bundled examples; both files are heavily commented teaching artifacts:

Drop your own under ~/.spirit/strategies/ and Spirit picks it up at next startup.

For more information visit www.tradebot.live.


Project structure

src/spirit/
  main.py                  - entrypoint
  setup.py                 - first-run wizard
  config.py                - .env / yaml loader
  trade_signal.py          - signal dataclass
  trade_status.py          - status dataclass
  trade_types.py           - TradeRecord dataclass (used by strategies)
  exchange/                - exchange adapter protocol + Kraken impl
  pipeline/                - WebSocket event bus, freshness cache, daemon health
  storage/                 - local SQLite schema (Free tier)
  strategies/
    base.py                - BaseStrategy abstract base class
    examples/sma_crossover - minimal reference strategy
    examples/macd_demo     - full-lifecycle reference strategy
  utils/                   - data providers, OHLC buffer, paper executor, etc.

The framework runs any strategy you write against any data source you plug in. Plus and Pro plans add bundled indicators served via the gateway API — the D-Limit suite, V3 confidence scorer, and risk-gate calibrators — without changing the framework you're building against. See tradebot.live for what each tier unlocks.


Supported exchanges

Spirit includes a Kraken adapter by default. You can write your own by implementing the ExchangeProvider protocol in src/spirit/exchange/protocol.py — see docs/reference/EXCHANGE_PLUGIN_GUIDE.md for the full guide.

We'll be releasing more exchange adapters over time. If there's a specific exchange you'd like us to prioritise, open a GitHub issue and we'll see if we can fit it in.


Status

Current release: see the latest tag on PyPI or GitHub Releases for the changelog. The Apache-2.0 framework is stable; Plus and Pro infrastructure is in active development.


License

Apache-2.0. See LICENSE.

The framework is free to use, modify, and redistribute. Plus and Pro subscriptions cover the hosted data and indicator infrastructure; the framework code itself doesn't depend on a subscription to run.


Support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spirit_platform-2.2.4.tar.gz (208.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

spirit_platform-2.2.4-py3-none-any.whl (236.8 kB view details)

Uploaded Python 3

File details

Details for the file spirit_platform-2.2.4.tar.gz.

File metadata

  • Download URL: spirit_platform-2.2.4.tar.gz
  • Upload date:
  • Size: 208.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spirit_platform-2.2.4.tar.gz
Algorithm Hash digest
SHA256 0744afd1c1ae2bd1d5b6ab913aef4745c95ca74e730aba0c7e6c8bb57dac2b64
MD5 528882ceecbd0d9e23f1d9ae9a278d05
BLAKE2b-256 7aec3b355aba1db2e1c7bc1d15ec932022e493d183d578b20da6075ed0b9b188

See more details on using hashes here.

Provenance

The following attestation bundles were made for spirit_platform-2.2.4.tar.gz:

Publisher: publish.yml on timoz10/spirit-platform

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file spirit_platform-2.2.4-py3-none-any.whl.

File metadata

  • Download URL: spirit_platform-2.2.4-py3-none-any.whl
  • Upload date:
  • Size: 236.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for spirit_platform-2.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 9530ad2bca30ef49dc73573179b35f6fc7cfabfef5448c487c3182858f79e165
MD5 22d0240f514fdd1acaf5691a0455dced
BLAKE2b-256 6aaa79bb96372c2bc1039c1efca51e6b0e3eabcd22d63b868625c1d64797dcd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for spirit_platform-2.2.4-py3-none-any.whl:

Publisher: publish.yml on timoz10/spirit-platform

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page