strategy-startup-guardrails
Installation
SKILL.md
Strategy Startup Guardrails
Quick Checklist (before launch)
- Imports: avoid shadowing
time; usefrom datetime import time as dt_timeandimport time as time_modulefor timestamps. - Market hours helpers: call
dt_time(...), nottime(...)iftimeis a module. - Config/env: confirm
OPENALGO_APIKEY, broker creds, and host/port. - Data readiness: master contracts downloaded for required exchanges/symbols.
- History preflight: run one manual history request with real payload (see
history-payload-validator).