Build, Backtest & Deploy
Algorithmic Trading Strategies
Nixoa Quant is a full-stack algorithmic trading platform for developers and quant traders. Design multi-strategy bots, backtest on years of historical data, and execute live orders through your broker API — all from one platform.
One Platform. Four Powerful Layers.
From strategy research to live execution — everything a quant trader or developer needs.
Strategy Development
Build AI-signal, RSI momentum, trend-rider, intraday regime-switch, swing pullback, and custom strategies with a visual parameter editor.
Backtesting Engine
Walk-forward testing, ML-optimized parameter sweeps, Sharpe/Sortino metrics, and win-rate analytics on years of OHLCV history.
Trading Automation
Per-strategy bots with isolated portfolios, configurable risk guards (stop-loss, take-profit, PDT block, bear-market filter), and scheduled execution.
Broker API Execution
Live order execution via Alpaca Markets. Market orders routed during NYSE hours. Paper and live mode toggle with risk disclosure gate.
Algorithmic Strategy Development Platform
Nixoa Quant exposes a clean strategy-engine architecture designed for developers who want to build, test, and deploy quantitative strategies — without writing broker integrations from scratch.
- TypeScript-first strategy evaluator API with typed params
- LSTM neural network trained per-symbol on your historical data
- Walk-forward & Monte Carlo backtest with parameter optimization
- Strategy marketplace — publish and monetize your strategies
- NLP strategy parser — describe your strategy in plain English
- Bot isolation — each strategy has its own holdings & budget
- Trade audit log, slippage analytics, scheduler monitoring
- Kill switch, PDT enforcement, bear-market capital preservation
// 6 built-in strategy types
type StrategyType =
| 'ai_signal'
| 'rsi_momentum'
| 'trend_rider'
| 'conservative_blend'
| 'intraday_regime_switch'
| 'swing_trend_pullback'
// Evaluation result
interface Evaluation {
action: 'BUY' | 'SELL' | 'HOLD_SKIP'
reason: string
confidence?: number
}
// Pure function, no side-effects
function evaluateRsiMomentum(
signal: EnrichedPredictionSignal,
params: RsiMomentumParams
): Evaluation {
if (signal.rsi < params.rsiBuy)
return { action: 'BUY', reason: `RSI ${signal.rsi}` }
if (signal.rsi > params.rsiSell)
return { action: 'SELL', reason: `RSI ${signal.rsi}` }
return { action: 'HOLD_SKIP', reason: 'Neutral' }
}Configure Once. Trade Automatically.
Your strategies run on a continuous scheduler. Each bot manages its own stock universe, risk parameters, and isolated budget — fully independent of other strategies.
Multi-Bot Automation
Run up to unlimited simultaneous strategy bots (plan-dependent). Each bot has its own signal, parameters, and stock watchlist.
Risk Engine
Hard stop-loss, take-profit, intraday momentum exits, PDT rule enforcement, and SPY-based bear-market capital preservation.
Isolated Bot Portfolios
Each strategy tracks its own positions and P&L independently. Run the same symbol in two strategies simultaneously for A/B testing.
Intraday + Swing Modes
Intraday (minute-level signals), swing (daily candles, golden cross), and long-term modes with mode-aware evaluators.
ML Signal Gate
Optionally gate trades behind a per-symbol LSTM model. The model must agree with the indicator signal before a trade fires.
Trade Alert Emails
Receive HTML email alerts for every executed BUY/SELL including symbol, price, shares, total, and strategy reason.
Kill Switch
One-click global trading halt for your account. Instantly stops all bot execution until you re-enable.
Audit Log
Immutable append-only log of all trades, logins, and settings changes. Full traceability for every action.
Strategy Marketplace
Publish your strategies and earn revenue-share from subscribers. Compare live annual returns across all users.
6+
Strategy Types
5
Risk Guards
10+
Backtest Metrics
4
AI Signal Sources
100%
Bot Isolation
5yr
History Depth
3
Execution Modes
7
Compliance Rules
Test Before You Trade
Validate your strategy on years of real market data before risking a single dollar. Our backtesting engine supports parameter optimization, walk-forward validation, and ML-assisted signal enhancement.
- OHLCV backtest on up to 5 years of Yahoo Finance data
- Parameter sweep with grid search optimization
- Walk-forward testing with out-of-sample validation
- Sharpe ratio, max drawdown, win rate, profit factor
- Backtest vs live performance comparison per strategy
- ML backtesting with LSTM signal overlay
Connect Your Broker. Execute Real Trades.
Connect your Alpaca brokerage account and let Nixoa Quant execute live market orders on your behalf. Your strategies run the same logic whether you're paper trading or live — the only difference is real money.
Simulate live execution using Alpaca Paper. Real-time prices, zero financial risk. Perfect for strategy validation.
Execute real market orders on NYSE/NASDAQ stocks. Automation runs your configured strategies during market hours (9:30–4PM ET).
Your AES-256-encrypted API keys are used solely to place orders. No third-party data sharing. Works with any Alpaca-supported account.
Execution flow per bot tick
- 1
Market data fetch
Live price, volume, RSI, MACD, BB
- 2
Risk guard pass
Stop-loss · Take-profit · PDT · Bear filter
- 3
Strategy evaluation
Pure-function signal → BUY / SELL / HOLD
- 4
ML gate (optional)
LSTM must agree with indicator signal
- 5
Order routing
Alpaca live order · or · virtual trade
- 6
Audit + alerts
DB log · email alert · slippage recorded
Everything Included
A complete quantitative trading toolkit — no external dependencies, no coding required for traders.
Live Market Data
Real-time quotes, OHLCV history, volume via Yahoo Finance
Candlestick Charts
Interactive charting with RSI, MACD, Bollinger Bands overlays
LSTM AI Signals
Per-symbol neural network trained on 1yr+ of price history
6 Strategy Types
AI, RSI, trend, conservative, intraday regime, swing pullback
Strategy Scheduler
Auto-runs strategies on configurable intraday/swing/longterm ticks
Virtual Balance
$20,000 demo account, no real money needed to get started
Backtest Engine
Walk-forward, grid search, ML-backed parameter optimization
Strategy Marketplace
Buy, subscribe to, and sell algorithmic strategy templates
Portfolio Analytics
Unrealized/realized P&L, heatmaps, per-symbol breakdown
Price Alerts
Set above/below alerts on any watchlist symbol
PDT Rule Guard
Auto-detects day trades; blocks intraday bots at 3 trades/week
Wash Sale Warnings
Flags potential wash sales on loss-selling transactions
GDPR / CCPA Controls
Data export, account deletion, cookie consent, privacy policy
AES-256 Encryption
Broker API keys encrypted at rest; passwords bcrypt-hashed
Mobile PWA
Installable progressive web app with offline dashboard caching
Fundamental Data
P/E ratio, EPS, debt-to-equity, earnings calendar per stock
Simple, Transparent Pricing
Start with a 14-day free trial. No credit card required.
Starter
$29/month
- 1 trading bot
- Virtual + paper trading
- Backtesting engine
- Basic analytics
- Community support
Pro
$79/month
- 5 trading bots
- Live Alpaca trading
- Risk management suite
- Multi-strategy portfolios
- Email support
Advanced
$149/month
- Unlimited bots
- AI signal gate (LSTM)
- Advanced analytics
- Priority execution
- Priority support
All plans include a 14-day free trial on the Starter plan. · Full plan comparison & terms
Ready to automate your trading strategy?
Join developers and quant traders already using Nixoa Quant to build, backtest, and deploy algorithmic strategies. Start for free today.
Get Started FreeNot financial advice. All features described are software tools. Privacy Policy · Terms of Service