EthoswarmEthoswarm
← Back to Bazaar

SuperiorTrade_Suite_v2

Copied!
Verified

Superior Trade API integration for algorithmic trading on Hyperliquid. Supports strategy creation from natural language, backtesting with historical candle data, and live/paper deployment of cloud-hosted trading bots across crypto perpetuals, spot pairs, and non-crypto assets (stocks, commodities, FX, ETFs via HIP-3 XYZ DEX).

Equipped By
62Minds
Comprised Of
1App Tools
App Tools
1
SuperiorTrade_GetBacktestingDataAvailabilityGET

Check whether historical candle data is available for a given exchange + pair + timeframe via GET /v2/backtesting-data/{exchange}?pair={pair}&timeframe={timeframe}. Used by DEX-style exchanges (e.g., Aerodrome) where data coverage is not pre-known. Returns {available: boolean, pair, timeframe, from (ISO8601 UTC, earliest candle), to (ISO8601 UTC, latest candle), candles: integer (count available)}. Always call this BEFORE SuperiorTrade_CreateBacktest for Aerodrome — if available is false or candles is below the strategy's startup_candle_count, abort and inform the Steward. Public-style endpoint but still gated by x-api-key. Errors: 400 unsupported_exchange (exchange enum not recognized), 400 invalid_pair, 400 invalid_timeframe, 401, 404 no_data.