cTrader Trade Copier: Copy To & From MT4, MT5 (Free Tool)
Set up a cTrader trade copier that works with MT4 and MT5. Covers ECN execution, symbol mapping, and cross-platform copying at no cost.

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 platform | Receiver platform | Required Copiix components |
|---|---|---|
| cTrader | MT4 | cTrader cBot and MT4 EA |
| cTrader | MT5 | cTrader cBot and MT5 EA |
| MT4 | cTrader | MT4 EA and cTrader cBot |
| MT5 | cTrader | MT5 EA and cTrader cBot |
| cTrader | Multiple MT4 and MT5 accounts | One provider cBot and separate receiver EAs |
| MT4 or MT5 | Multiple cTrader accounts | One 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 direction | Provider action | Receiver conversion |
|---|---|---|
| cTrader to MT4 | cBot publishes the cTrader trade | MT4 EA creates an MT4 order |
| cTrader to MT5 | cBot publishes the cTrader trade | MT5 EA creates an MT5 order or position |
| MT4 to cTrader | MT4 EA publishes the MT4 order | cBot converts lots to valid cTrader volume |
| MT5 to cTrader | MT5 EA publishes the MT5 position or order | cBot creates a compatible cTrader instruction |
| One provider to several platforms | One standardized signal is sent | Each 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).
| Platform | Automation component | Development environment | Native compatibility |
|---|---|---|---|
| cTrader | cBot | C# or Python with cTrader Algo API | Runs only in supported cTrader applications |
| MT4 | Expert Advisor | MQL4 | Runs only in MT4 |
| MT5 | Expert Advisor | MQL5 | Runs only in MT5 |
| Copiix Console | Local communication layer | Connects each platform component | Translates 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 detail | cTrader | MT4 | MT5 |
|---|---|---|---|
| Automation component | cBot | MQL4 Expert Advisor | MQL5 Expert Advisor |
| Common automated volume format | Units | Lots | Lots |
| Position structure | Individual positions | Order-based trading | Netting or hedging |
| Market order | Position created through broker execution | Market order ticket | Order, deal, and position records |
| Pending orders | Limit, stop, and stop-limit | Limit and stop | Limit, stop, and stop-limit |
| Strategy identifier | Label | Magic number | Magic number |
| Symbol rules | Broker-defined | Broker-defined | Broker-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.
| Requirement | cTrader check | MetaTrader check |
|---|---|---|
| Broker connection | Prices update and account shows connected | Connection bars and prices update |
| Copiix component | cBot appears in the cBots or Algo area | EA appears under Navigator > Expert Advisors |
| Component status | cBot instance shows as running | EA remains attached to a chart |
| Automated trading | Start the cBot instance | Enable AutoTrading or Algo Trading |
| Copiix Console | Terminal appears in the terminal map | Terminal appears in the terminal map |
| Permissions | Grant requested file-system access | Allow automated trading in EA properties |
| Account rules | Broker or prop firm permits automation | Broker 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 step | Exact action | Expected result |
|---|---|---|
| Locate cBot | Open cBots and select Copiix | Copiix appears as an available cBot |
| Add instance | Select Add to Chart | A cBot instance is created |
| Grant access | Approve file-system permission | Local communication can operate |
| Start cBot | Click Play | The cBot status changes to running |
| Open console | Find the detected cTrader terminal | Its unique ID and status appear |
| Assign role | Enable Provider | cTrader begins sending eligible signals |
| Apply filters | Configure symbols, direction, lot range, or labels | Only selected activity is published |
| Connect Copyers | Assign intended receiver terminals | The 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 setting | Required configuration | Purpose |
|---|---|---|
| Terminal role | Enable Copyer | Allows cTrader to receive signals |
| Provider relationship | Select the MT4, MT5, or cTrader provider | Defines the signal source |
| Prefix | Add characters before the canonical symbol | Matches broker symbol formatting |
| Suffix | Add characters after the canonical symbol | Matches broker symbol formatting |
| Translate | Map one base symbol to another | Handles completely different names |
| Money management | Choose the receiver sizing method | Controls cTrader volume |
| Signal filters | Select symbols, directions, labels, or lot ranges | Restricts incoming trades |
| Stop settings | Configure SL and TP handling | Controls 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 symbol | Canonical signal | Receiver symbol | Configuration |
|---|---|---|---|
EURUSD | EURUSD | EURUSD.c | Receiver Suffix: .c |
FX_EURUSD | EURUSD | EURUSD | Provider Prefix: FX_ |
#XAUUSD | XAUUSD | XAUUSD.raw | Provider Prefix: #; receiver Suffix: .raw |
DAX | DAX | GER40 | Translate: DAX:GER40 |
GOLD | GOLD | XAUUSD | Translate: 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 method | Calculation behavior | Suitable use |
|---|---|---|
| Equity to Equity | Scales volume according to provider and Copyer equity | Accounts with different equity |
| Percentage | Applies a defined percentage of provider size | Simple proportional scaling |
| Fixed | Uses a set receiver size | Standardized testing or account limits |
| Multiplier | Increases or decreases the calculated result | Fine adjustment after base calculation |
| Money Management Map | Applies different rules by symbol, group, or strategy identifier | Multi-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 difference | Required copier response | Remaining execution effect |
|---|---|---|
EURUSD versus EURUSD.c | Apply the correct suffix | Prices and spread can still differ |
DAX versus GER40 | Add a Translate rule | Contract specifications may differ |
| Different volume steps | Normalize receiver volume | Final size may be rounded |
| Different leverage | Calculate receiver margin separately | Order may fail for insufficient margin |
| Different sessions | Follow receiver market hours | Trade may be rejected while closed |
| Different stop distance | Validate receiver SL and TP | Protection levels may require adjustment |
| Different liquidity | Submit at receiver’s available price | Slippage 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 event | Receiver action | Possible limitation |
|---|---|---|
| Open Buy or Sell | Submit receiver market order | Fill price can differ |
| Place Limit order | Create compatible receiver Limit order | Entry price must be valid |
| Place Stop order | Create compatible receiver Stop order | Broker stop distance applies |
| Place Stop-Limit order | Recreate where supported | MT4 does not offer native stop-limit orders |
| Modify SL or TP | Update linked receiver trade | Minimum distance applies |
| Change pending entry | Modify the linked pending order | Symbol may be closed |
| Partial close | Reduce receiver exposure | Volume step can change the amount |
| Full close | Close the linked receiver position | Position must still exist |
| Delete pending order | Cancel linked receiver order | Order 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).
| Test | Provider action | Required receiver result |
|---|---|---|
| Connection | Start the provider and receiver components | Both terminals show online |
| Market Buy | Open the smallest practical Buy | Correct receiver symbol and direction |
| Market Sell | Open a Sell | Correct receiver Sell |
| Lot calculation | Use a known provider size | Expected normalized receiver volume |
| Stop loss | Add or change SL | Linked receiver protection updates |
| Take profit | Add or change TP | Linked receiver protection updates |
| Pending order | Place a supported Stop or Limit | Compatible receiver order appears |
| Partial closure | Reduce provider volume | Receiver volume reduces correctly |
| Full closure | Close provider trade | Linked receiver trade closes |
| Symbol mapping | Trade a mapped symbol | Correct receiver instrument is selected |
| Restart | Restart the console and terminals | Roles and relationships recover |
| Rejection | Create a controlled invalid condition | Error 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).
| Problem | Where to check | Corrective action |
|---|---|---|
| cTrader not detected | cBot status and file permission | Restart cBot and grant access |
| MetaTrader not detected | Navigator and automated trading button | Reattach EA and enable trading |
| Wrong direction | Reverse or direction setting | Correct the Copyer rule |
| Symbol not found | Prefix, Suffix, and Translate | Enter the exact receiver mapping |
| Invalid volume | Minimum, maximum, and volume step | Change sizing or normalization |
| Invalid stops | Broker stop distance | Adjust the copied SL or TP |
| Pending order rejected | Receiver order-type support | Use a compatible instruction |
| Insufficient margin | Receiver free margin | Reduce receiver size |
| Wrong trade source | Provider relationship | Select the correct terminal ID |
| Duplicate trade | Duplicate instance or signal route | Remove the extra connection |
| Partial close differs | Receiver volume step | Review normalized closing volume |
| Trade missing after restart | Component or console not running | Restore 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 capability | Cross-platform purpose |
|---|---|
| Provider and Copyer roles | Allow every supported platform to send or receive |
| MT4 and MT5 Expert Advisors | Connect MetaTrader terminals |
| cTrader cBot | Connect cTrader accounts |
| Local console | Manage all terminal relationships |
| Prefix and Suffix | Resolve broker additions to symbols |
| Translate | Map completely different symbol names |
| Money management | Calculate independent receiver volume |
| Symbol filters | Restrict copied instruments |
| Direction filters | Restrict Buy or Sell signals |
| Magic number and label handling | Separate strategies across platforms |
| Position management | Synchronize changes and closures |
| Unlimited Copyers | Connect 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 priority | Required decision |
|---|---|
| Copying direction | Decide which account is the Provider |
| Receiver relationship | Assign each intended Copyer |
| Platform component | Run the cBot or EA required by that terminal |
| Symbol handling | Configure Prefix, Suffix, or Translate |
| Position size | Select the receiver money management method |
| Volume normalization | Follow the receiver’s minimum and step |
| Order support | Confirm compatible market and pending orders |
| Broker conditions | Compare contracts, sessions, and stop distances |
| Testing | Verify the full trade lifecycle on demo |
| Monitoring | Review platform and Copiix logs |
| Compliance | Confirm 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.
