Design, backtest, and deploy autonomous trading modules to the cloud. Strategies are built with LLMs and executed across stocks, options, futures, and crypto — through a single institutional control plane.
ENTON unifies research, simulation, and execution behind one API and one cloud deployment target.
Compose trading modules in TypeScript or natural language. The ENTON SDK exposes market data, order routing, risk, and portfolio state as first-class primitives.
Replay tick-level history across asset classes. Language models iterate on parameters, read performance reports, and propose the next experiment.
Promote a module to a managed runtime with a single call. ENTON handles orchestration, broker sessions, observability, and guardrails.
Describe the edge, the universe, and the risk envelope. ENTON generates a typed module, wires it to live market data, and validates it against historical ticks before a single order is routed.
// docs.enton.ai/examples/adaptive-es
import { defineModule } from "@enton/sdk";
export default defineModule({
id: "example_adaptive_es_v1",
universe: ["ES"], // CME E-mini S&P 500 futures
broker: "tradovate",
account: "paper:example",
risk: {
maxPositionUsd: 30_000,
dailyLoss: 750,
flattenAt: "15:45 ET",
},
strategy: ({ bars, llm, risk }) => llm.plan`
adaptive trend-follower on ES.
retune length + atr multiplier on rolling volatility,
size by conviction, trail the winner with atr(length).
`,
});
// $ enton deploy example_adaptive_es_v1 --env paper
// illustrative sample · see docs for the full walkthroughMarket data is normalized on ingest; orders are routed broker-native on the way out. Nothing between you and the venue.
US cash stocks through Alpaca. Smart order routing, fractional support, and extended hours.
Multi-leg spreads and single-legs with Greeks, IV surfaces, and event-aware expiry handling.
CME micros and majors via Tradovate. Session-aware, margin-aware, and HFT-capable.
Spot and perp coverage with 24/7 execution and funding-rate-aware strategy primitives.
OAuth into your own brokerage account and deploy modules directly. ENTON never custodies capital — your broker does.
Commission-free US equities and options. OAuth-managed sessions, paper and live.
CME futures execution with native FIX. Fast fills, Lightning-compliant runtime.
Interactive Brokers, Coinbase, and Schwab on the roadmap.
Built with working quant researchers and prop traders.