Assemble a trading bot from modular components. Each section defines one layer of the compiled strategy. The config is yours to download and run.
Where does the bot connect? Each platform has a setup guide with API keys, config files, and troubleshooting.
How does the bot detect opportunities? One module reads the market.
How does the bot quantify the opportunity? One module runs the math.
How does the bot act? One module handles order placement.
The growth target, tolerance window, and position sizing. These define the discipline layer.
Complete all selections above to compile.
{
"version": "1.0.0",
"platform": {
"id": null,
"name": null,
"category": null
},
"modules": {
"signal": {
"id": null,
"name": null
},
"edge": {
"id": null,
"name": null
},
"execution": {
"id": null,
"name": null
}
},
"band": {
"growth_target_pct": 8,
"tolerance_pct": 1
},
"sizing": {
"mode": "moderate",
"kelly_multiplier": 0.25
},
"compiled_at": "2026-05-30T03:10:16.904Z"
}botwir3 is software. Not a financial advisor, broker, or exchange. The builder presents options. The user configures, compiles, and operates the bot. Outcomes are the operator's responsibility.