Metadata-Version: 2.4
Name: riskstate-trading-playbook
Version: 0.1.0
Summary: Python client for the RiskState Trading Playbook Engine — a registry of locked crypto trading setups and which fire now for BTC/USD and ETH/USD, gated by structure + risk (the strategist engine). Public, no key.
Author: RiskState
License: MIT
Project-URL: Homepage, https://riskstate.ai/docs/playbook-engine
Project-URL: Repository, https://github.com/likidodefi/trading-playbook-engine
Project-URL: Bug Tracker, https://github.com/likidodefi/trading-playbook-engine/issues
Keywords: crypto,bitcoin,ethereum,trading,trading-strategy,playbook,risk-management,riskstate
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# riskstate-trading-playbook (Python)

Python client for the **RiskState Trading Playbook Engine** (the *strategist* —
*is there a setup I trade?*). One of three composable RiskState engines.
**Public, no key.**

Full project docs, examples, and the TypeScript client:
https://github.com/likidodefi/trading-playbook-engine ·
https://riskstate.ai/docs/playbook-engine

```python
from riskstate_trading_playbook import PlaybookClient

client = PlaybookClient()           # no key needed
data = client.get()
print(data["count"], "playbooks (source:", data["source"], ")")

for f in client.firing_now(data, "BTC"):
    print(f["playbook_id"], "→ nav", f["structure_gate"]["vote"], "gate", f["gate_status"])
```

License: MIT
