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.

4. Ignoring Broker Min Lot and Lot Step

Every MT5 symbol has three volume constraints set by the broker: SYMBOL_VOLUME_MIN (usually 0.01), SYMBOL_VOLUME_STEP (usually 0.01), and SYMBOL_VOLUME_MAX. If your multiplier produces 0.037 lots, MT5 will reject the order with error 4756 (invalid volume) unless the copier rounds to a valid step. A well-built copier normalizes every calculated lot down to the nearest valid step — 0.037 becomes 0.03 — so the order never bounces. If you see "invalid volume" in your Experts log, this rounding is the first thing to check.

5. Letting Risk-Based Sizing Compound Into Prop Firm Limits

Risk-based mode recalculates from current equity. That is normally a feature, but on a prop account approaching its profit target, growing equity means growing lots — and a single loss can breach the daily drawdown even though each trade risked "only" 1%. On funded accounts, cap risk-based sizing with a hard Max Lot and consider risking off the initial balance, not floating equity, in the final stretch of a challenge.

Cross-Broker Lot Sizing: Contract Sizes Are Not Universal

A frequent surprise when copying across brokers: 1.0 lot is not always the same exposure. Forex standard lots are 100,000 units almost everywhere, but indices and metals vary wildly. One broker's 1.0 lot on US30 might be $1/point while another's is $10/point. Gold (XAUUSD) is usually 100 oz per lot but some prop firm feeds use 10 oz. If you copy 1.0 lot of US30 from Broker A to Broker B without checking SYMBOL_TRADE_CONTRACT_SIZE, your risk can be 10× off even though the lot number matches. Multiplier mode with a per-symbol override, or risk-based mode (which reads the actual pip value from the terminal), solves this.

Frequently Asked Questions

What lot sizing mode should I use with a trade copier?

It depends on your accounts. Fixed lots work best when copying to identically-sized accounts (e.g., all $50K funded). Multiplier mode works when copying to different-sized accounts (e.g., $10K and $100K) — set a multiplier like 0.2× on the smaller account. Risk-based sizing is the most professional approach: it calculates lot size per trade from account balance and risk percentage, automatically adjusting as equity changes.

How do I calculate lot size for different account sizes?

Use the ratio of account sizes. If your master is a $50K account trading 0.5 lots and your slave is a $25K account, use a 0.5× multiplier: 0.5 × 0.5 = 0.25 lots on the slave. For risk-based: risking 1% on a $25K account with a 30-pip stop loss gives ($25,000 × 0.01) / (30 × $10) = 0.83 lots on standard pairs.

Can I set different lot sizes on different accounts with TradingView Copier Pro?

Yes. Each EA instance runs independently on its own MT5 terminal. You configure lot size, multiplier, risk percentage, and max lot separately per account. A $100K funded account can run 1.0 lots while a $10K challenge runs 0.1 lots — from the same TradingView signal.

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 →