Run the bot.
Understand the system.
A trading strategy is only one component. Deployment, exchange permissions, persistence, monitoring and execution determine what actually runs.
STRATEGY
↓
PROCESS
↓
EXCHANGE API
↓
PAPER EXECUTION
↓
LOGS + METRICSFrom installation to forward evidence.
Build a persistent trading host with predictable restarts and logs.
↗02CONTAINERSDocker setupKeep configuration, user data and upgrades reproducible.
↗03EVIDENCEPAPER tradingMeasure forward behavior before exposing real capital.
↗04EXCHANGEFreqtrade + OKXConnect an exchange API with deliberately limited permissions.
↗05SECURITYSecure the VPSReduce credential exposure and operational attack surface.
↗A bot is more than strategy code.
Persist what matters
Trade state, configuration, strategies and model artifacts must survive process and container restarts.
Minimize permissions
Exchange keys should have only required permissions. Public dashboards should not become bot-control surfaces.
Forward test the deployment
PAPER mode tests signal behavior and operations together before real execution adds another risk layer.
Freqtrade is infrastructure.
V6 is the experiment.
Our V6 branch uses FreqAI on BTC, ETH and SOL in PAPER mode. The public result is automatically updated from sanitized trading metrics.
Open V6 experiment