Docs.
Everything you need to connect, compose and execute. This is a stub — the full reference ships with v1.0 public launch.
Quickstart
Go from zero to first_trade in under 3 minutes.
# 1. create a trade-only API key on your exchange
# 2. paste it into tradefloor
# 3. compose a strategy:
when rsi(14, "15m") < 28
and obi("1m") > 0.40
and whale.inflow("5m") > $5M
then open LONG {
size = equity * 2% * 3x
take_prof = [+1.2%, +2.4%, +4.0%]
stop_loss = atr_trail(14)
insurance = hedge(-1.5%)
}
Connect exchanges
| venue | auth | scope | rate limit |
|---|---|---|---|
| Hyperliquid | Ed25519 signature | trade · read | venue-enforced |
| Binance Futures | HMAC-SHA256 | futures_trade · read | 1200 w/min |
| Bybit V5 | HMAC headers | linear_trade · read | token-bucket |
REST API · v1
Bearer auth · rate-limited · HTTP/2.
GET /api/v1/positions GET /api/v1/signals POST /api/v1/configs POST /api/v1/configs/:id/webhook
TradingView webhooks
Every trade config gets a unique webhook URL. Fire any TV alert with entry / SL / TP and we execute it on your chosen exchange, applying your risk rules.
POST https://tradefloor.co/webhook/:token/:config_id/:action
{
"entry": 68412.5,
"sl": 67120.0,
"tp": [69420, 70100, 71000]
}
Trigger graph
AND / OR logic, up to 5 conditions per entry. Evaluated every 60 seconds.
API keys
Encrypted at rest with AES-256 Fernet + HMAC. Versioned, rotatable. Never ask for withdrawal permission.
this page is a stub · full docs ship with v1.0 launch · [email protected]