// free, source-available core — or a fully managed platform

From strategy research
to live trading
in days.

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.

~/strategies/MoMacdExample.cs   —   QuantInfra Live
// 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();
    }
}

[ 01 ]Why QuantInfra

Don't build infrastructure. Build performance.

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.

[ 02 ]Three ways to run it

Start free. Scale when you need to.

The same C# strategy SDK and execution engine, offered as a free self-hosted app or a fully managed, multi-tenant platform.

[ 01 ]

Community

Free

Source-available. Self-hosted. One app.

  • C# strategies SDK
  • Backtester app
  • Live execution engine
  • Simple web UI for operators
  • Real time orders, positions, NAV
  • For individual traders and small emerging funds
  • Community support
get it on GitHub ↗
[ 02 ]

Professional

Fixed subscription

Scalable, managed, multi-user.

  • Everything in Community
  • Books
  • Fund accounts to track client investments
  • Risk limits by book and by fund
  • Multi-user control panel
  • Premium email support
  • Distributed scalable deployment
  • Fully managed deployment possible
book a demo →
[ 03 ]

Enterprise

Custom

Client-facing. Managed. Bespoke.

  • Everything in Professional
  • Branded client portal — investors see PnL in real time
  • Fully managed deployments
  • Custom integrations and reporting
talk to us →
[ 03 ]What we offer

Everything you need to run a trading firm out of the box

[ 01 ]

Write strategies in modern C# with the same code running in backtest and live

[ 02 ]

Backtest with any resolution down to ticks. Optimize across thousands of cores on demand

[ 03 ]

Trade stocks, futures, and crypto across Interactive Brokers, Binance Futures, and more

[ 04 ]

Manage strategies and accounts through a web control panel

[ 05 ]

Real-time PnL and risk per strategy — plus per book and per client account

Professional
[ 06 ]

Handle fund operations: fees, allocations, deposits, withdrawals

Professional
[ 07 ]

Built-in and custom reports — orders, trades, positions, audit

[ 08 ]

Give clients a branded portal with real-time PnL

Enterprise
[ 04 ]Infrastructure

// 01

Flexible infrastructure

Deploy 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.

// 02

Built for performance

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.

[ 05 ]Built for

[ 01 ]

Prop trading firms

  • Run multiple strategies within a single broker account
  • Track performance per strategy and book
  • Centralize execution and risk management
// best fit: Free to start · Professional for books & risk limits
[ 02 ]

Hedge funds

  • Maintain exposure aligned with mandates
  • Automate reporting to investors
  • Deliver a professional client experience
// best fit: Professional · Enterprise for a branded client portal
[ 03 ]

SMA

  • Execute strategies across multiple client accounts
  • Customize exposure per client
  • Monitor execution quality at account level
// best fit: Professional for fund accounts per client

Launch faster. Spend less. Scale sooner.

Start free and self-hosted today. Go managed — with books, fund accounts, and client reporting — when you're ready.

// no commitment · evaluation environment in days