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
| Mode | How It Works | Best For |
|---|---|---|
| Fixed | Every trade uses the same lot size | Same-size accounts, simple setups |
| Multiplier | Lot = signal lot × multiplier | Different-size accounts, proportional scaling |
| Risk-Based | Lot = (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
- All your copied accounts are the same size
- Your strategy uses a consistent lot size
- You want the simplest possible configuration
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
- Copying to accounts of different sizes
- Your TradingView strategy calculates lot size for a reference account
- You want proportional risk across accounts
Example: Multiplier Across 4 Accounts
Your TradingView strategy calculates lots for a $100K account (1.0 lot signal):
| Account | Size | Multiplier | Executed Lot | Risk % |
|---|---|---|---|---|
| FTMO Funded | $100K | 1.0× | 1.0 lot | 1% |
| FundedNext Funded | $50K | 0.5× | 0.5 lot | 1% |
| The5ers Funded | $25K | 0.25× | 0.25 lot | 1% |
| Challenge Account | $10K | 0.1× | 0.1 lot | 1% |
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
- Account equity: $50,000
- Risk per trade: 1% ($500)
- Stop loss: 30 pips
- Pip value per standard lot (EURUSD): $10
- Lot size: $500 / (30 × $10) = 1.67 lots
If the next trade has a 50-pip stop loss instead:
- Lot size: $500 / (50 × $10) = 1.0 lot
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
- Your strategy has varying stop loss distances
- You want consistent risk regardless of market conditions
- You are managing prop firm accounts with strict daily loss limits
- Your equity changes significantly during the trading period
How to Set Up Each Mode in TradingView Copier Pro
Fixed Lot
In the EA settings:
Lot Mode = FixedLot Size = 0.5(or your desired fixed lot)
Multiplier
In the EA settings:
Lot Mode = MultiplierLot Multiplier = 0.5(or your ratio)
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:
Lot Mode = RiskRisk Percent = 1.0Max Lot = 5.0(safety cap)
Your webhook JSON must include the sl field in pips for accurate calculation.
Which Mode for Which Account Type?
| Scenario | Recommended Mode | Why |
|---|---|---|
| Single account, consistent strategy | Fixed | Simplest setup, no math needed |
| Multiple same-size accounts | Fixed | Same lot everywhere |
| Multiple different-size accounts | Multiplier | Proportional scaling |
| Prop firm with strict loss limits | Risk-Based | Consistent risk, auto-adjusts to equity |
| Strategy with varying SL distances | Risk-Based | Same 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 →