cTrader Trade Copier: Copy To & From MT4, MT5 (Free Tool)

Copiix Team
13 min read

Set up a cTrader trade copier that works with MT4 and MT5. Covers ECN execution, symbol mapping, and cross-platform copying at no cost.

#ctrader #mt4 #mt5 #cross-platform #symbolmapping #tradecopier
cTrader Trade Copier: Copy To & From MT4, MT5 (Free Tool)

A position opens on cTrader, but the account you need to synchronize runs on MT5. Re-entering the trade manually can change the entry price, volume, stop levels, or symbol. A cTrader trade copier solves this problem by converting the source trade into an instruction the receiving platform can process.

Cross-platform copying does not move the original broker order between platforms. The provider sends the trade details, and each receiver creates a separate order through its own broker connection.

This guide explains the supported copying directions, platform differences, cBot setup, symbol mapping, lot normalization, broker compatibility, testing, and troubleshooting.

Can cTrader Act as Either the Provider or Receiver in a Cross-Platform Copy Setup?

cTrader can act as either provider or receiver in a cross-platform copy setup, including to and from MT4 and MT5. Because cTrader uses ECN execution and its own symbol conventions, the copier must translate symbol names and normalize lot sizes between platforms. Copiix supports cTrader as a fully supported platform alongside both MetaTrader versions.

A provider is the account that generates the original trading instruction. A receiver, called a Copyer in Copiix, receives that instruction and creates the corresponding trade through its own platform.

Copiix uses a cBot inside cTrader and Expert Advisors inside MT4 and MT5. These platform-specific components communicate through the Copiix Console, which standardizes the source trade before applying the receiver’s symbol, volume, and risk settings.

Copiix documentation states that cTrader supports Level II market data, ECN execution, advanced order management, and API-based automation. The receiving broker still controls spreads, available liquidity, contract specifications, and final fills. (Source: Copiix cTrader Documentation, 2026).

Provider platformReceiver platformRequired Copiix components
cTraderMT4cTrader cBot and MT4 EA
cTraderMT5cTrader cBot and MT5 EA
MT4cTraderMT4 EA and cTrader cBot
MT5cTraderMT5 EA and cTrader cBot
cTraderMultiple MT4 and MT5 accountsOne provider cBot and separate receiver EAs
MT4 or MT5Multiple cTrader accountsOne provider EA and separate receiver cBot instances

The platforms do not need to share a broker. Each account remains connected to its own broker server and follows that broker’s execution conditions.

Which Cross-Platform Copying Directions Are Supported?

A cTrader trade copier can support every provider-to-receiver combination across cTrader, MT4, and MT5 when each terminal has the correct Copiix component. The direction is determined by the Provider and Copyer roles rather than the platform itself.

The provider component detects trade activity and publishes a standardized signal. The receiver component reads that signal and rebuilds the trade according to its own platform and broker requirements.

Copiix documents support for any combination of MT4, MT5, and cTrader accounts through its guide to cross-platform copy trading software. The local model also supports unlimited accounts without requiring a subscription or third-party credential relay.

Copying From cTrader to MT4 or MT5

When cTrader is the provider, the Copiix cBot reads the cTrader position or order and sends a platform-neutral instruction to the MetaTrader receiver.

The instruction contains the symbol, direction, volume, entry type, stop loss, take profit, and later management events. The MT4 or MT5 EA then converts that information into an order supported by its own terminal.

The receiver does not inherit the cTrader position ID. It creates a separate MetaTrader order or position and records the relationship so future modifications and closures can be applied correctly.

Copying From MT4 or MT5 to cTrader

When cTrader is the receiver, the Copiix cBot converts the MetaTrader signal into a valid cTrader order using the receiver symbol and tradable volume units.

The cTrader receiver applies its own prefix, suffix, translation, and money management settings before submitting the order. It must also normalize the calculated volume to the minimum and step permitted by the cTrader broker.

Copying directionProvider actionReceiver conversion
cTrader to MT4cBot publishes the cTrader tradeMT4 EA creates an MT4 order
cTrader to MT5cBot publishes the cTrader tradeMT5 EA creates an MT5 order or position
MT4 to cTraderMT4 EA publishes the MT4 ordercBot converts lots to valid cTrader volume
MT5 to cTraderMT5 EA publishes the MT5 position or ordercBot creates a compatible cTrader instruction
One provider to several platformsOne standardized signal is sentEach receiver applies separate rules

Each receiver can use a different lot calculation or symbol mapping. A single cTrader provider can therefore send the same trading decision to several accounts without forcing every receiver to use identical risk.

Why Does cTrader Need a Cross-Platform Trade Copier?

cTrader needs a cross-platform copier because cBots and MetaTrader Expert Advisors use different programming environments, APIs, and trade objects. Neither platform can natively load or execute the other platform’s automation component.

A cBot is an automated cTrader program built with C# or Python and connected to the cTrader Algo API. Spotware states that each cBot instance operates independently and can open, modify, and close positions according to its programmed rules. (Source: cTrader Introduction to Trading Bots, 2026).

MT4 Expert Advisors use MQL4 and operate inside the MT4 terminal. MetaQuotes stores these programs in the terminal’s MQL4\Experts directory and links an active EA to a chart. (Source: MQL4 Reference, 2026).

MT5 uses MQL5 and a separate trading API. MetaQuotes defines MQL5 Expert Advisors as automated programs that control trading processes through specialized functions and predefined event handlers. (Source: MQL5 Reference Guide, 2026).

PlatformAutomation componentDevelopment environmentNative compatibility
cTradercBotC# or Python with cTrader Algo APIRuns only in supported cTrader applications
MT4Expert AdvisorMQL4Runs only in MT4
MT5Expert AdvisorMQL5Runs only in MT5
Copiix ConsoleLocal communication layerConnects each platform componentTranslates trade instructions across platforms

The copier does not convert an MQL Expert Advisor into a cBot. It allows separate components to exchange trade information through one standardized copying process.

How Do cTrader and MetaTrader Handle Trades Differently?

cTrader and MetaTrader differ in symbol presentation, volume measurement, order handling, automation components, and account behavior. A cross-platform copier must resolve these differences before sending the receiver order.

The differences are most visible when two brokers use different symbols or when cTrader represents volume in units while the MetaTrader provider reports volume in lots.

Symbol Names and Contract Specifications

A symbol name identifies the instrument inside one broker’s platform, while its contract specification defines the volume, price, margin, and trading limits applied to that symbol.

The same market can appear as EURUSD, EURUSD.c, FX_EURUSD, or another broker-specific name. Indices and metals can use completely different labels, such as GER40, DE40, or DAX.

cTrader’s symbol information includes lot size, minimum and maximum volume, minimum price change, commission, swap values, and market hours. These values can differ between brokers even when the displayed instruments represent the same market. (Source: cTrader Active Symbol Panel, 2026).

Trade Volume and Order Execution

cTrader algorithms calculate volume in units by default, while MetaTrader trade functions commonly express order volume in lots. The receiver must convert and normalize the source size before submitting the trade.

Spotware provides Symbol.QuantityToVolumeInUnits() to convert lots into cTrader units. It also provides the reverse conversion when a system needs to express unit volume as a quantity in lots. (Source: cTrader Advanced cBot Operations, 2026).

Trading detailcTraderMT4MT5
Automation componentcBotMQL4 Expert AdvisorMQL5 Expert Advisor
Common automated volume formatUnitsLotsLots
Position structureIndividual positionsOrder-based tradingNetting or hedging
Market orderPosition created through broker executionMarket order ticketOrder, deal, and position records
Pending ordersLimit, stop, and stop-limitLimit and stopLimit, stop, and stop-limit
Strategy identifierLabelMagic numberMagic number
Symbol rulesBroker-definedBroker-definedBroker-defined

Cross-platform copying preserves the trading decision rather than forcing the platforms to use identical internal records. A cTrader position and an MT5 position can remain linked even though their tickets and platform objects differ.

What Do You Need Before Connecting cTrader to MetaTrader?

You need the Copiix Console, an active cTrader desktop terminal, an active MT4 or MT5 terminal, connected broker accounts, and permission to run automated trading components. The local components must remain active for copying to continue.

cTrader requires the Copiix cBot to have file-system access because the local copying components exchange synchronization and configuration information. MT4 and MT5 require automated trading permissions for their Expert Advisors.

RequirementcTrader checkMetaTrader check
Broker connectionPrices update and account shows connectedConnection bars and prices update
Copiix componentcBot appears in the cBots or Algo areaEA appears under Navigator > Expert Advisors
Component statuscBot instance shows as runningEA remains attached to a chart
Automated tradingStart the cBot instanceEnable AutoTrading or Algo Trading
Copiix ConsoleTerminal appears in the terminal mapTerminal appears in the terminal map
PermissionsGrant requested file-system accessAllow automated trading in EA properties
Account rulesBroker or prop firm permits automationBroker or prop firm permits automation

Use one active Copiix component for each terminal instance. Running unnecessary duplicate components can make monitoring harder and may create conflicting connection records.

Both accounts should be tested on demo before live copying. A successful terminal connection does not confirm that the symbols, volumes, and order types are compatible.

How Do You Set Up cTrader as the Provider Platform?

Set cTrader as the provider by starting the Copiix cBot, confirming its connection to the console, and assigning the terminal the Provider role. The cBot will then publish eligible cTrader trades to its connected Copyers.

In cTrader, open the cBots section and locate Copiix. Select Add to Chart, authorize file-system access when requested, and click the Play button to start the cBot.

Copiix states that all cTrader copying parameters are managed through the Copiix Console rather than inside the cBot settings window. The running cBot displays its connection status, unique terminal ID, role, active parameters, and copying activity. (Source: Copiix cTrader Setup Documentation, 2026).

Setup stepExact actionExpected result
Locate cBotOpen cBots and select CopiixCopiix appears as an available cBot
Add instanceSelect Add to ChartA cBot instance is created
Grant accessApprove file-system permissionLocal communication can operate
Start cBotClick PlayThe cBot status changes to running
Open consoleFind the detected cTrader terminalIts unique ID and status appear
Assign roleEnable ProvidercTrader begins sending eligible signals
Apply filtersConfigure symbols, direction, lot range, or labelsOnly selected activity is published
Connect CopyersAssign intended receiver terminalsThe signal route becomes active

Review outgoing filters before testing. A symbol, direction, label, or lot filter can correctly block a trade even when the provider connection is working.

How Do You Set Up cTrader as the Receiver Platform?

Set up cTrader as the receiver by running the Copiix cBot, assigning the terminal the Copyer role, selecting the provider, and configuring the receiver-side symbol and money management rules. Before copying live trades, confirm that the cTrader terminal is connected to the correct provider and that all receiver settings match your broker and trading preferences.

A Copyer is not required to use the same risk as its provider. The cTrader account can calculate a smaller volume, reverse the direction where intentionally configured, or exclude instruments it should not trade.

The Copiix Console uses a terminal map to show Provider, Copyer, and dual-role connections. The console also allows copying to start or stop without changing the provider’s original account. (Source: Copiix Console Overview, 2026).

Receiver settingRequired configurationPurpose
Terminal roleEnable CopyerAllows cTrader to receive signals
Provider relationshipSelect the MT4, MT5, or cTrader providerDefines the signal source
PrefixAdd characters before the canonical symbolMatches broker symbol formatting
SuffixAdd characters after the canonical symbolMatches broker symbol formatting
TranslateMap one base symbol to anotherHandles completely different names
Money managementChoose the receiver sizing methodControls cTrader volume
Signal filtersSelect symbols, directions, labels, or lot rangesRestricts incoming trades
Stop settingsConfigure SL and TP handlingControls copied protection levels

Do not open the first live provider trade until the cTrader receiver displays the correct provider relationship. A receiver connected to the wrong provider can copy valid signals from the wrong account.

How Do You Map Symbols Between cTrader, MT4, and MT5?

Map symbols by removing provider-specific prefixes and suffixes, then adding the formatting required by the receiver. Use Translate when the two platforms use completely different base names.

A symbol prefix is a group of characters placed before the base symbol. A suffix is added after it. Examples include FX_EURUSD, EURUSD.c, and EURUSD-pro.

Copiix processes these additions in two stages. The Provider removes its broker-specific characters to create a canonical symbol, and the Copyer applies the receiver broker’s required prefix or suffix.

Copiix’s guide to prefix and suffix configuration documents this process and shows how selective settings can be applied only to designated instruments.

Provider symbolCanonical signalReceiver symbolConfiguration
EURUSDEURUSDEURUSD.cReceiver Suffix: .c
FX_EURUSDEURUSDEURUSDProvider Prefix: FX_
#XAUUSDXAUUSDXAUUSD.rawProvider Prefix: #; receiver Suffix: .raw
DAXDAXGER40Translate: DAX:GER40
GOLDGOLDXAUUSDTranslate: GOLD:XAUUSD

A matching name does not confirm a matching contract. Compare the contract size, quote currency, volume limits, tick size, and market hours before treating two symbols as equivalent.

How Are Lot Sizes Normalized Across the Platforms?

Lot sizes are normalized by calculating the intended receiver exposure, converting that value into the receiver’s volume format, and rounding it to a valid trading step. This prevents a MetaTrader lot value from being sent to cTrader as an invalid unit quantity.

For standard forex symbols, one lot commonly represents 100,000 base units. Metals, indices, stocks, and cryptocurrencies can use different contract sizes, so the copier must read the receiver symbol rather than assume every lot has the same unit value.

The cTrader Symbol API provides QuantityToVolumeInUnits(), VolumeInUnitsToQuantity(), minimum volume, maximum volume, volume step, and normalization methods. These properties allow a calculated receiver size to be converted into a tradable value. (Source: cTrader Symbol API, 2026).

Copiix supports receiver-side money management methods rather than forcing a one-to-one lot copy. Its account controls include proportional and fixed sizing options that can be applied independently to each Copyer. (Source: Copiix Account Management Documentation, 2026).

Sizing methodCalculation behaviorSuitable use
Equity to EquityScales volume according to provider and Copyer equityAccounts with different equity
PercentageApplies a defined percentage of provider sizeSimple proportional scaling
FixedUses a set receiver sizeStandardized testing or account limits
MultiplierIncreases or decreases the calculated resultFine adjustment after base calculation
Money Management MapApplies different rules by symbol, group, or strategy identifierMulti-asset or multi-strategy accounts

A calculated size of 12,345 units may be invalid when the cTrader broker permits increments of 1,000 units. The receiver must normalize the value to an accepted step before sending the order.

Can You Copy Trades Between Accounts at Different Brokers?

Yes, cTrader, MT4, and MT5 accounts can use different brokers because the copier transfers trade instructions between terminals rather than transferring broker-side orders. Each receiver submits its own request to its own broker.

Different brokers can use separate symbol names, contract sizes, execution rules, margin requirements, trading hours, and minimum order sizes. These differences explain why a copied trade can be rejected or filled at another price even when the signal arrives correctly.

Copiix’s guide to symbol translation between brokers documents Translate entries such as DAX:GER30 and comma-separated rules for multiple instruments.

Broker differenceRequired copier responseRemaining execution effect
EURUSD versus EURUSD.cApply the correct suffixPrices and spread can still differ
DAX versus GER40Add a Translate ruleContract specifications may differ
Different volume stepsNormalize receiver volumeFinal size may be rounded
Different leverageCalculate receiver margin separatelyOrder may fail for insufficient margin
Different sessionsFollow receiver market hoursTrade may be rejected while closed
Different stop distanceValidate receiver SL and TPProtection levels may require adjustment
Different liquiditySubmit at receiver’s available priceSlippage can differ

Map like-for-like instruments only. A spot CFD and a futures contract can track the same underlying market while using different expiry dates, prices, contract sizes, and trading schedules.

Which Orders and Trade Changes Can Be Copied?

A cross-platform trade copier can copy market orders, compatible pending orders, stop-loss and take-profit changes, partial closures, full closures, and pending-order cancellations. The receiver platform and broker must support the instruction for it to be reproduced successfully.

A market order requests execution at the best available price. A pending order waits for a defined price condition before becoming eligible for execution.

cTrader supports market, limit, stop, and stop-limit orders. Its order interface also supports expiry, stop loss, take profit, market range, and several trigger-side options. (Source: cTrader Orders Documentation, 2026).

Copiix lists open and close synchronization, pending orders, stop-loss and take-profit mapping, reverse trading, and trade filters among its supported copying behaviors. (Source: Copiix Platform Features, 2026).

Provider eventReceiver actionPossible limitation
Open Buy or SellSubmit receiver market orderFill price can differ
Place Limit orderCreate compatible receiver Limit orderEntry price must be valid
Place Stop orderCreate compatible receiver Stop orderBroker stop distance applies
Place Stop-Limit orderRecreate where supportedMT4 does not offer native stop-limit orders
Modify SL or TPUpdate linked receiver tradeMinimum distance applies
Change pending entryModify the linked pending orderSymbol may be closed
Partial closeReduce receiver exposureVolume step can change the amount
Full closeClose the linked receiver positionPosition must still exist
Delete pending orderCancel linked receiver orderOrder may already be triggered

Platform-specific instructions need a defined conversion rule. A cTrader stop-limit order cannot be copied to MT4 as an identical native order because MT4 does not provide the same order type.

How Do You Test a cTrader Trade Copier Safely?

Test the cTrader trade copier with one Provider and one Copyer on demo accounts before adding more terminals or live exposure. The test must cover the complete trade lifecycle rather than one successful opening.

Copiix recommends beginning with a simple Provider and Copyer configuration, applying basic money management, observing behavior, and checking errors before normal use. (Source: Copiix Getting Started Documentation, 2026).

TestProvider actionRequired receiver result
ConnectionStart the provider and receiver componentsBoth terminals show online
Market BuyOpen the smallest practical BuyCorrect receiver symbol and direction
Market SellOpen a SellCorrect receiver Sell
Lot calculationUse a known provider sizeExpected normalized receiver volume
Stop lossAdd or change SLLinked receiver protection updates
Take profitAdd or change TPLinked receiver protection updates
Pending orderPlace a supported Stop or LimitCompatible receiver order appears
Partial closureReduce provider volumeReceiver volume reduces correctly
Full closureClose provider tradeLinked receiver trade closes
Symbol mappingTrade a mapped symbolCorrect receiver instrument is selected
RestartRestart the console and terminalsRoles and relationships recover
RejectionCreate a controlled invalid conditionError appears without duplicate orders

Use the lowest volume accepted by both brokers. The purpose of the test is to verify mechanics, not to evaluate whether the trading strategy is profitable.

Compare the provider, Copiix, and receiver logs after each action. Record the symbol, direction, requested volume, accepted volume, timestamps, and broker response.

What Can Cause Cross-Platform Trades to Copy Incorrectly?

Cross-platform trades can copy incorrectly when a component is stopped, the wrong role is assigned, a symbol rule is incomplete, the receiver volume is invalid, or the broker rejects the requested order. The logs identify whether the failure occurred before or after submission.

A correct connection status proves only that the components can communicate. It does not prove that the receiving broker will accept the symbol, volume, order type, price, or protective levels.

Copiix’s MT4 documentation advises checking the AutoTrading setting, symbol prefix and suffix fields, account permissions, and communication directory when copied trades fail. (Source: Copiix MT4 Documentation, 2026).

Copiix’s MT5 documentation identifies netting versus hedging, contract specifications, execution policies, symbol mapping, trading sessions, and pending-order compatibility as platform-specific checks. (Source: Copiix MT5 Documentation, 2026).

ProblemWhere to checkCorrective action
cTrader not detectedcBot status and file permissionRestart cBot and grant access
MetaTrader not detectedNavigator and automated trading buttonReattach EA and enable trading
Wrong directionReverse or direction settingCorrect the Copyer rule
Symbol not foundPrefix, Suffix, and TranslateEnter the exact receiver mapping
Invalid volumeMinimum, maximum, and volume stepChange sizing or normalization
Invalid stopsBroker stop distanceAdjust the copied SL or TP
Pending order rejectedReceiver order-type supportUse a compatible instruction
Insufficient marginReceiver free marginReduce receiver size
Wrong trade sourceProvider relationshipSelect the correct terminal ID
Duplicate tradeDuplicate instance or signal routeRemove the extra connection
Partial close differsReceiver volume stepReview normalized closing volume
Trade missing after restartComponent or console not runningRestore every part of the local chain

Check cTrader’s Algo log and MetaTrader’s Experts and Journal tabs before changing several settings. One exact error message is more useful than repeated configuration changes.

Include the Copiix version, platform versions, account roles, symbol names, sizing method, and full error message when you contact the Copiix team.

How Does Copiix Support cTrader and MetaTrader Connections?

Copiix supports cTrader, MT4, and MT5 through separate cBots and Expert Advisors connected to one local console. The console standardizes provider signals and applies separate receiver rules for each account.

Copiix keeps the core copying process on the trader’s device. Trading credentials and copy data do not need to pass through a mandatory third-party cloud relay.

The main Copiix trade copier features include multi-platform support, unlimited accounts, custom trade filters, money management, symbol mapping, and real-time monitoring.

Copiix capabilityCross-platform purpose
Provider and Copyer rolesAllow every supported platform to send or receive
MT4 and MT5 Expert AdvisorsConnect MetaTrader terminals
cTrader cBotConnect cTrader accounts
Local consoleManage all terminal relationships
Prefix and SuffixResolve broker additions to symbols
TranslateMap completely different symbol names
Money managementCalculate independent receiver volume
Symbol filtersRestrict copied instruments
Direction filtersRestrict Buy or Sell signals
Magic number and label handlingSeparate strategies across platforms
Position managementSynchronize changes and closures
Unlimited CopyersConnect multiple receiving accounts

Copiix keeps cross-platform trade copying local so the trader retains control over the accounts, data, symbols, and risk rules.

The core features remain free permanently with no subscription or mandatory registration. Optional Premium and Leader donation tiers support development and activate additional features for 30 days.

Copiix is independent of MetaQuotes and Spotware. MetaTrader 4, MetaTrader 5, MT4, and MT5 are MetaQuotes trademarks, while cTrader is a Spotware trademark.

cTrader and MetaTrader Trade Copying: Key Takeaways

A cTrader trade copier connects cTrader with MT4 and MT5 by translating trade instructions rather than transferring broker orders. Reliable copying depends on correct roles, symbol mapping, volume normalization, broker compatibility, and testing.

The Provider should publish only the trades intended for copying. Each Copyer should apply risk and symbol settings based on its own account rather than assuming every platform uses identical conditions.

Setup priorityRequired decision
Copying directionDecide which account is the Provider
Receiver relationshipAssign each intended Copyer
Platform componentRun the cBot or EA required by that terminal
Symbol handlingConfigure Prefix, Suffix, or Translate
Position sizeSelect the receiver money management method
Volume normalizationFollow the receiver’s minimum and step
Order supportConfirm compatible market and pending orders
Broker conditionsCompare contracts, sessions, and stop distances
TestingVerify the full trade lifecycle on demo
MonitoringReview platform and Copiix logs
ComplianceConfirm broker and prop firm rules

Before using live accounts:

  • Confirm every terminal displays the correct role.
  • Verify every Provider-to-Copyer connection.
  • Test each translated symbol separately.
  • Compare contract specifications across brokers.
  • Check receiver volume after normalization.
  • Test modifications, partial closures, and full closures.
  • Review the first live trades directly.
  • Stop copying when an unexplained difference appears.

Copy trading reproduces losses as quickly as gains. Every receiver must remain within its own margin limits, drawdown rules, and risk plan.

Copy Trades Across cTrader, MT4, and MT5 With Copiix

Start with one Provider and one Copyer in a controlled demo setup. Confirm symbol mapping, volume normalization, pending orders, protection changes, closures, and restart behavior before connecting additional accounts.

Copiix runs locally and supports cTrader, MT4, and MT5 in any Provider-to-Copyer combination. The core software remains free and gives each receiver its own symbol, filter, and money management controls.

Once the platform components and copying route have been tested, download Copiix and connect your cTrader and MetaTrader accounts.

Frequently Asked Questions About cTrader Trade Copiers

Can cTrader copy trades directly to MT4?

Yes, a cTrader Provider can copy trades to an MT4 Copyer through a compatible cross-platform copier. The cTrader cBot sends the signal, and the MT4 Expert Advisor creates the receiver order.

Both components and the Copiix Console must remain active. The MT4 broker still determines the final fill.

Can an MT5 account send trades to cTrader?

Yes, an MT5 account can act as the Provider while cTrader acts as the Copyer. The cTrader cBot converts the MetaTrader signal into a supported cTrader instruction.

The cTrader volume must be normalized to the symbol’s permitted unit step. Symbol mapping may also be required.

Do cTrader and MetaTrader accounts need to use the same broker?

No, the accounts can use different brokers. Each terminal keeps its own broker connection and submits its own orders.

Different brokers can use different symbols, contract sizes, sessions, and volume limits. These differences must be configured and tested.

How are different symbol names matched across platforms?

Different symbol names are matched with Prefix, Suffix, and Translate settings. Prefix and Suffix handle extra broker characters, while Translate connects different base labels.

For example, a suffix can change EURUSD to EURUSD.c. A Translate rule can connect DAX with GER40.

Can one cTrader provider copy trades to several MetaTrader accounts?

Yes, one cTrader Provider can send signals to several MT4 and MT5 Copyers. Each receiver can use separate symbols, filters, and money management settings.

The practical capacity depends on the computer’s resources and terminal workload. Add Copyers gradually and test synchronization.

Does Copiix charge for cTrader-to-MetaTrader trade copying?

No, Copiix’s core local copying features are free permanently. Cross-platform copying does not require a subscription or mandatory registration.

Optional donation tiers support continued development and unlock additional features for 30 days. They are not required for the core copying process.