STRATEGY · BUILT-IN + API

MZpack Strategies w Divergence for NinjaTrader 8

2 built-in strategies
{ } Full C# source
8 signal types
🧪 Built-in backtesting
🛠 MZpack API
★★★★☆ 4.88 / 5 · 8 verified reviews
Product screenshot
✓ Best for
  • Algorithmic & semi-automated traders
  • C# developers building custom strategies
  • Order flow automation on futures / CME
  • Backtesting hypothesis with real DOM data
✗ Not for

Pre-built order flow strategies

Two ready-to-use algo strategies with full source code. Modify, extend or use as templates for your own ideas.

FLAGSHIP
Footprint Action
Order flow strategy using 8 built-in signals with pattern-based logic. Combine signals via AND/OR trees, backtest on historical data, run in Auto or Manual mode.
Delta Divergence Delta Trap Delta Tail Delta Surge/Drop Delta Slingshot Delta Flip Above/Below POC Stacked Imbalance
Learn more →
REVERSAL
Ghost Resistance
Reversal strategy targeting liquidity traps. Detects fading resistance through DOM pressure, absorption patterns and hidden liquidity shifts to catch turning points early.
Absorption S/R DOM Pressure DOM Imbalance Liquidity Trap Big Trades
Learn more →
Features
Details
Videos
Reviews (8)
Pattern-Based Signals Custom and built-in signals. Logical AND/OR/CONJUNCTION trees for complex strategy design with minimum coding.
Backtesting & ATM Proprietary ATM functionality. Full backtesting with NinjaTrader ATM support for realistic strategy validation.
Pattern Dashboard On-chart visualization of patterns. See signal logic, entries and exits directly on the chart in real-time.
Auto & Manual Modes Fully automated or manual operating modes. Use Manual for discretionary signal-assisted trading.
All features & capabilities
MZpack API Programmatic access to all 6 MZpack indicators. Use classes as building blocks for custom strategies.
Strategy Control Panel Customizable panel for managing strategy state, positions and risk parameters during live execution.
Risk Management Built-in risk controls — position sizing, max loss, daily limits to protect capital during execution.
Data Export Export indicators and chart data to .csv or datasets — ideal for machine learning and external analysis.
Built-in Strategies Pre-built order flow strategies with source code: Footprint Action and Ghost Resistance — run or customize.
Logging System Detailed strategy execution logging for debugging, analysis and post-session performance review.
Who are MZpack Strategies / API for?
Pre-built order flow strategies You want to trade using pre-built order flow strategies
Backtesting You want to find and backtest an order flow / order book strategy
ML Data Export You want to export indicator data for machine learning
Strategy Testing You have candidate strategies to backtest
Automation You want to automate your trading (Coding Service available)
Signal-Assisted Trading You want to trade manually with signals to spot order flow patterns
C# Development You have basic/advanced C# or NinjaScript skills
Custom Indicators You want to code your own indicators based on MZpack
Supported markets & system requirements
Markets
✓ Futures ✓ Stocks ✓ Forex * ✓ Crypto
Data
Level 1 required Level 2 for mzMarketDepth Historical data ✓ Market Replay ✓
Optimal setup
Win 10/11 64-bit NT 8.0.27.0+ i9 / Ryzen 9 8–16 GB RAM SSD/NVMe
Strategies in NinjaTrader 8 are fully automated algorithms coded in NinjaScript/C#. MZpack API is an interface to MZpack Indicators that introduces traders to a programmable way of creating their own trading algorithms and automated strategies. Traders can use provided classes as building blocks to construct strategies with minimum coding. MZpack API grants granular flexibility in design instead of offering pre-made strategies. What once took days or weeks, now takes hours or even minutes!
What's in the Package
Indicator Charting API Access
mzFootprint
mzVolumeProfile
mzBigTrade
mzMarketDepth
mzDeltaDivergence
mzVolumeDelta
What You Get
  • Pre-built strategies with source code: Footprint Action, Ghost Resistance
  • Data Export tool (CSV and dataset)
  • MZpack API + API Reference
  • API Samples for learning and demonstration
  • Source code for strategies and API extensions
Licensing & Services
Free updates & support✓ Guaranteed during license period and product life cycle
Active product development✓ Regular updates & new features
Helpdesk & Online Docs✓ Quick start, settings, FAQ, troubleshooting
Code reviewing✓ Free — our developers review your code
Coding Service (MZpack API)See pricing
License transfer✓ Available within 24 business hours

Upgrade path: Upgrade to Full Suite (Indicators + Strategies) at a discounted rate. See Discounts & Upgrade Plans.

Built-in: Footprint Action Strategy
Sample Strategy Demo
4.88
★★★★☆ Based on 8 verified reviews
★★★★★

“Now I understand how works your API and is impresionant. I'm creating a strategy similar to Footprintaction's, but with other signals.”

— Rafael R., verified owner · Jun 2025
★★★★★

“The best support and the best software in realm of trading.”

— Fadli S., verified owner · Apr 2025
★★★★★

“I have also been studying hard, reading your user manual and the API documentation. I am impressed. As a retired systems programmer (Assembler) I appreciate the effort that has gone into creating MZPack. There is clearly a substantial expertise in your company...”

— John P., verified owner · Dec 2024
★★★★★

“I have been using MZPACK for about 2yrs. And all I can say is the features sets (MZPack 3) are much richer compared to other platforms at the same price level. In addition, the software's flexibility and adaptability to a trader personality and trading style is a huge bonus...grow as…”

— Chris, verified owner · Jan 2022
★★★★

“”

— anthony Sheldon, verified owner · Oct 2019
Add your review
How does it compare?
vs. other automated trading options on NinjaTrader 8
MZpack StrategiesMarketplace EAsDiscretionary trading
Order flow dataRarely availableManual reading
Source codeBlack box
Signal customizationFixed parametersPersonal judgment
Backtesting on tick dataLimitedImpossible
Custom strategy APINo
License modelSubscriptionFree
Build your own with MZpack API

Sample code is included in \API\samples — start from working examples and modify in C#.

FootprintAction.csC#
protected MZpack.NT8.Algo.Strategy CreateAlgoStrategy()
{
    var strategy = new FootprintActionAlgoStrategy(@"Footprint Action v1.5", this)
    {
        IsUnmanaged = Position_Instrument_Enable ? true : false,
        OppositePatternAction = OppositePatternAction,
    };
    // Trading times
    if (Time1_Enable)
        strategy.TradingTimes.Add(new TradingTime() {
            Begin = TryParseDateTime(Time1_Begin),
            End   = TryParseDateTime(Time1_End)
        });
    // Risk management
    strategy.RiskManagement = new MZpack.NT8.Algo.RiskManagement(strategy)
    {
        Currency              = Currency.UsDollar,
        EntryName             = ENTRY1,
        DailyLossLimitEnable  = Risk_DailyLossLimit_Enable,
        DailyLossLimit        = Risk_DailyLossLimit,
    };
    return strategy;
}
Common questions

Technically yes — strategies run on any NinjaTrader 8 connection including Apex, TopStep, Take Profit Trader. Always check your firm's policy on third-party automation before deploying.

No, for built-in strategies (Footprint Action, Ghost Resistance) — you configure them through the Pattern Editor with AND/OR logic. C# only needed if you want to build new strategies from scratch with the API.

Trial expires automatically — no auto-renewal, no charge. You can purchase a Lifetime license to continue. See upgrade plans.

Yes. Full Suite includes Strategies + Indicators Package — if you already own Strategies, you can pay only the difference. Check upgrade prices.

NinjaTrader 8 (version 8.0.27+) with Lifetime license or NT Brokerage account, an order flow capable broker (CME futures recommended), Tick Replay enabled. Works with free NT8 license for simulation/backtesting.

This product does not include indicators for discretionary trading. For charting + footprint analysis you need Indicators Package, or save by getting Full Suite which bundles both.

€399 · lifetime
1 device · solo workstation
  • Footprint Action + Ghost Resistance built-in
  • Full C# source code included
  • MZpack API for custom strategies
  • Free updates for life
  • Helpdesk & Online Docs access
  • Works with any NT8 license
  • License transfer available
★★★★★ "Now I understand how works your API and is impresionant. I'm creating…" — Rafael R., verified owner
🔒 Secure payment via PayPro Global
💬 Helpdesk support included
€399
1 device · lifetime
Get Strategies →