Algo Trading

Automate everything with the open API

From your first rule-based bot to fully systematic portfolios — build, backtest and deploy with institutional tooling.

Open API

Full programmatic access to market data, order management, account state and historical prices. REST and WebSocket streams with clear documentation.

Tick-level backtesting

Test strategies against years of tick data with realistic spread, slippage and commission modelling — then analyse equity curves and trade distributions.

Bot builder

Create rule-based bots visually without writing code: entries, exits, filters and risk rules composed from 80+ indicators.

Algorithm marketplace

Deploy vetted algorithms with published track records and configurable risk settings. Review live performance before allocating.

Developer-first by design

Typed SDKs, WebSocket market data, sandbox environments and detailed error semantics. Everything your quant team expects — without the enterprise sales friction.

  • • REST + WebSocket APIs with 99.99% uptime SLA
  • • Sandbox accounts with realistic fills
  • • Rate limits designed for HFT-adjacent workloads
  • • Webhooks for fills, margin events and alerts
strategy.ts
// Open API — place a market order
const client = new FxtsClient({ apiKey: process.env.FXTS_KEY });

await client.orders.create({
  symbol: "EURUSD",
  side: "buy",
  volume: 0.5,           // lots
  stopLossPips: 40,
  takeProfitPips: 90,
});

// Stream live quotes
client.quotes.subscribe("EURUSD", (q) => {
  console.log(q.bid, q.ask, q.timestamp);
});

Ship your first strategy today

Grab an API key, connect to the sandbox and place your first automated order in under ten minutes.