Trade Copier Lot Sizing: Fixed vs Multiplier vs Risk-Based

Trade copier lot sizing calculation chart

You set up your trade copier, fire a test signal, and it works — but the lot size is wrong. Your $100K funded account opens 0.1 lots (meant for a $10K account), or your $10K challenge opens 1.0 lots (meant for the $100K). Lot sizing is the most misconfigured setting in trade copier setups.

This guide covers the three lot sizing approaches — fixed, multiplier, and risk-based — with real examples for multi-account configurations.

Trade Copier Lot Sizing: Three Modes Explained

ModeHow It WorksBest For
FixedEvery trade uses the same lot sizeSame-size accounts, simple setups
MultiplierLot = signal lot × multiplierDifferent-size accounts, proportional scaling
Risk-BasedLot = (account × risk%) / (SL pips × pip value)Professional risk management, varying SL distances

Mode 1: Fixed Lot Sizing

The simplest approach. You set a lot size in the EA, and every copied trade uses that exact lot size regardless of the signal's original lot.

When to Use Fixed Lots

Example: Fixed Lot Setup

You have 3 FTMO $50K accounts. Set each EA to Lot Size = 0.5. Every trade on every account opens at 0.5 lots. No calculation needed.

Limitation: Fixed lots do not adjust as your equity changes. If your $50K account grows to $55K, you are still trading 0.5 lots — underutilizing the extra margin. If it drops to $45K, you are over-risking.

Mode 2: Multiplier Lot Sizing

The multiplier takes the lot size from your TradingView signal and multiplies it. If your webhook JSON sends "lot": 1.0 and your EA has a multiplier of 0.5, the executed lot is 0.5.

When to Use Multiplier

Example: Multiplier Across 4 Accounts

Your TradingView strategy calculates lots for a $100K account (1.0 lot signal):

AccountSizeMultiplierExecuted LotRisk %
FTMO Funded$100K1.0×1.0 lot1%
FundedNext Funded$50K0.5×0.5 lot1%
The5ers Funded$25K0.25×0.25 lot1%
Challenge Account$10K0.1×0.1 lot1%

The risk percentage stays consistent at 1% across all accounts because the lot sizes scale proportionally.

Mode 3: Risk-Based Lot Sizing

The most sophisticated approach. The EA calculates lot size per trade based on your account equity, risk percentage, and the stop loss distance.

The Formula

Lot Size = (Account Equity × Risk %) / (SL in Pips × Pip Value per Lot)

Example Calculation

If the next trade has a 50-pip stop loss instead:

The dollar risk stays constant ($500 = 1% of $50K) while the lot size adjusts to the stop loss distance. This is how professional prop firm traders manage risk.

When to Use Risk-Based

How to Set Up Each Mode in TradingView Copier Pro

Fixed Lot

In the EA settings:

Multiplier

In the EA settings:

Your webhook JSON must include the lot field:

{"action":"buy","symbol":"EURUSD","lot":1.0,"sl":30,"tp":60}

Risk-Based

In the EA settings:

Your webhook JSON must include the sl field in pips for accurate calculation.

Which Mode for Which Account Type?

ScenarioRecommended ModeWhy
Single account, consistent strategyFixedSimplest setup, no math needed
Multiple same-size accountsFixedSame lot everywhere
Multiple different-size accountsMultiplierProportional scaling
Prop firm with strict loss limitsRisk-BasedConsistent risk, auto-adjusts to equity
Strategy with varying SL distancesRisk-BasedSame dollar risk per trade

Common Lot Sizing Mistakes

1. Not Updating Multiplier When Account Size Changes

Your $50K funded account grew to $75K. If you are still running a 0.5× multiplier designed for $50K, you are under-trading by 33%. With risk-based mode, this adjusts automatically.

2. Forgetting Max Lot Safety Cap

Without a max lot limit, a risk-based calculation on a very tight stop loss can produce dangerously large positions. Always set a maximum lot cap (e.g., 5.0 lots for a $50K account).

3. Using Signal Lot on Wrong Account Size

Your TradingView strategy may calculate lots for a $100K backtest. If you copy directly to a $10K account without adjusting, you are 10× over-leveraged. Always use multiplier mode or risk-based mode when account sizes differ.

Per-Account Lot Sizing. One Signal.

TradingView Copier Pro supports fixed, multiplier, and risk-based lot sizing on each account independently. One TradingView signal, perfectly sized trades everywhere.

Get TradingView Copier Pro →