An algorithmic trading platform deployed into your cloud. Write strategies in C#, backtest with realistic execution, run live across brokers and asset classes, and manage allocations and PnL. Start free and self-hosted, or go managed when you need to scale.
// QuantInfra C# strategy API · same code in backtest and live public class MoMacdExample : AbstractSingleBarHostedStrategy<MoMacdNewParams> { protected override void CalculateVector(string barQualifier, StrategyCalculationContext context) { double? threshold = Params.Threshold * _close.GetValue(BarStorage[1]); bool isSignalShort = _emaFast.GetValue(BarStorage[1]) > _emaSlow.GetValue(BarStorage[1]); isSignalShort &= _emaFast.GetValue(CurrentBar) < _emaSlow.GetValue(CurrentBar); isSignalShort &= _acceleration.GetValue(CurrentBar) < threshold; bool isSignalLong = _emaFast.GetValue(BarStorage[1]) < _emaSlow.GetValue(BarStorage[1]); isSignalLong &= _emaFast.GetValue(CurrentBar) > _emaSlow.GetValue(CurrentBar); isSignalLong &= _acceleration.GetValue(CurrentBar) > threshold; if (!context.AccountState.Positions.Any()) { var tradeVolume = GetVolume(context.AccountState.Investment); if (isSignalLong) OpenPosition(tradeVolume); else if (isSignalShort) OpenPosition(-tradeVolume); } else if (isSignalLong || isSignalShort) ClosePosition(); } }
Building and maintaining trading infrastructure takes months of engineering time and significant upfront investment — often before your strategy is even validated.
QuantInfra lets you skip that phase entirely.
The platform is deployed into your private cloud and operated by us. You keep ownership of your strategies, data, broker credentials, and capital. You focus on generating alpha. We handle the platform.
The same C# strategy SDK and execution engine, offered as a free self-hosted app or a fully managed, multi-tenant platform.
Source-available. Self-hosted. One app.
Scalable, managed, multi-user.
Client-facing. Managed. Bespoke.
Write strategies in modern C# with the same code running in backtest and live
Backtest with any resolution down to ticks. Optimize across thousands of cores on demand
Trade stocks, futures, and crypto across Interactive Brokers, Binance Futures, and more
Manage strategies and accounts through a web control panel
Real-time PnL and risk per strategy — plus per book and per client account
ProfessionalHandle fund operations: fees, allocations, deposits, withdrawals
ProfessionalBuilt-in and custom reports — orders, trades, positions, audit
Give clients a branded portal with real-time PnL
EnterpriseDeploy QuantInfra on your preferred cloud or on-premise environment — including Amazon Web Services, Microsoft Azure, Google Cloud, or others.
As your firm evolves, we extend the platform to support your specific workflows and requirements.
Event-driven architecture designed for production trading environments. Time-critical components support thousands of orders per second with single-digit-millisecond internal latency.
Services and connectors can be deployed near the execution venues.
Start free and self-hosted today. Go managed — with books, fund accounts, and client reporting — when you're ready.