Dashboard

Your personal hub for member access
Connection Status
NT8 Add-On
Not Connected
Onboarding Progress Meter

Getting Started Checklist

Trading Application Controls

Master XT Controls

Manage overall signal settings. The kill switch supersedes closing-only instructions.
Kill Switch Master switch to disable all signals.
Closing Only Allow only closing signals to be sent.

Global Trading Window

XT will still receive and log all signals, but will not forward them to NinjaTrader if received outside the specified day and time.
Trading Window is enabled!
Trading Window disabled.
Blocks opening orders inside Trading Window and after selected time below.
Command Interface
Trader
Builder
Library

Manual Trader

1. Connect to the NT8 Add‑On
2. Send commands to NinjaTrader
3. Copy command & webhook URL into TradingView alert

Webhook URL

Add this URL in the Notifications tab of your TradingView alert.

Command Builder

Build a command step‑by‑step with guided options.

Close Position only needs Account & Instrument.

Learn more

Trade Management

Add Stops / Targets or reference an NT8 ATM template.

Enhancements

Add advanced behaviour to your command.

Close existing position before placing this order.

Only place if current market position matches.

Only execute between selected times (exchange time).

Minimum seconds between consecutive orders.

Wait N seconds before firing the order.

Command Library

Command Examples

Collection of pre-built commands for common trading scenarios. Additional examples can be found in our Help Docs.

Buy Market

Market order to buy 1 ES contract. Switch action to SELL to create a short order. Change instrument and/or account to your preference.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY;

Buy Limit

Place a limit order below market price. SELL limits can be created using a 'SELL' action and a price above the market.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=LIMIT; limit_price=X; tif=DAY;

Buy with ATM Strategy

Place a market order using an NT8 ATM strategy. The ATM template name and quantity must match what is saved on NT8. Flatten_first is added to ensure any existing ATM pending orders are closed before a new entry.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; strategy=your-atm-template; flatten_first=true;

Close Position

Command to close a position and any working orders if the position exists. Requires account and instrument.

key=your-secret-key; command=CLOSEPOSITION; account=sim101; instrument=ES 06-25;

Flatten Everything

Flatten all positions and orders across all accounts. This is a nuclear option — use with caution.

key=your-secret-key; command=FLATTENEVERYTHING;

TradingView Strategy Entry

Use TradingView dynamic variables to place strategy orders. Must paste directly into TradingView alert.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action={{strategy.order.action}}; qty={{strategy.order.contracts}}; order_type=MARKET; tif=DAY;

TradingView Stop & Reverse Strategy

Use Flatten First to close the existing position before changing strategy direction.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action={{strategy.order.action}}; qty={{strategy.order.contracts}}; order_type=MARKET; tif=DAY; flatten_first=true;

Stops and Targets

Market order with stop loss and take profit. You can use tick, percentage, or numerical values.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; take_profit=X; stop_loss=-X;

Multi-Account Placement

Send the same order across multiple NT8 accounts. Separate accounts with commas.

key=your-secret-key; command=PLACE; account=sim101,sim102; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY;

Flatten First

Force-close the existing position before submitting a new trade.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; flatten_first=true;

Require Position

Only place an order if the account has the required position (flat, long, short).

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; require_market_position=flat;

Trading Window

Restrict order placement to specific time windows (Eastern Time).

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; start_time=09:30; end_time=16:00;

Rate Limiting

Throttle orders by setting a minimum interval (in seconds) between them.

key=your-secret-key; command=PLACE; account=sim101; instrument=ES 06-25; action=BUY; qty=1; order_type=MARKET; tif=DAY; rate_limit=1; id=your-id;