"TradeCopierBot" 标识
cBot
7 购买
版本 1.0, Dec 2025
Windows 版、Mac 版, Web
4.3
评价:3
"TradeCopierBot" 已上传图片
"TradeCopierBot" 已上传图片
42.1M
交易量
6.13M
盈利点数
157
销售
6.51K
免费安装

🚀 TradeCopierBot — Fast, Clean, and Broker-Proof Trade Copying (Local/VPS) 🔁✨

Copy your trades from a MASTER account to one (or more) SLAVE accounts with a lightweight, event-driven copier designed for real trading conditions: different brokers, different symbol names, different lot rules.
Perfect for multi-account execution, risk scaling, and strategy distribution—with detailed debug logs so you always know what’s happening. 🧠📈

✅ Optimized for Local / VPS setups (same machine).
❌ Not designed for cTrader Cloud (instances are isolated, so signals can’t be shared). ☁️🚫

Attention: if you have two different cTrader accounts, you need to purchase two cBots; otherwise, you won’t be able to copy them. We are at your complete disposal for any information.

🧠 How it works (MASTER → SLAVE) 🧩

🔁 1) Signal transport (how trades “travel”)

This copier uses cTrader LocalStorage (Device scope) as a shared “message bus”.

MASTER

  • Listens to position events: Opened / Modified / Closed
  • Creates a TradeSignal (OPEN / MODIFY / CLOSE)
  • Appends it to a signals list in LocalStorageScope .Device
  • Calls Flush() so the SLAVE can read it immediately

SLAVE

  • Runs a Timer every Poll Interval seconds
  • Calls Reload()
  • Reads the signals list
  • Processes only new signals (using _lastSignalIndexProcessed)


🧷 2) Position mapping (so CLOSE works)

When the SLAVE opens a trade, it stores:

🧩 MasterPositionId → SlavePositionId

This mapping is also saved into LocalStorage, so it survives restarts:

  • ✅ CLOSE still works after reboot
  • ✅ MODIFY still finds the correct position


🧭 3) Symbol translation (MASTER symbol → SLAVE symbol)

🗺️ Symbol Map (MASTER=SLAVE;...)

Used when symbol names differ between brokers/accounts.

Format:

  • MASTER=SLAVE;MASTER2=SLAVE2;...

Example (your case):

  • MASTER opens USTEC
  • SLAVE must trade US100

➡️ USTEC=US100

✅ Left side = symbol arriving from MASTER
✅ Right side = symbol on SLAVE broker


📏 4) Volume logic (the key part) 🔥

✅ Works in lots/quantity (decimals supported)

To handle decimals (0.10, 0. 01, etc.), the SLAVE:

  • Calculates desired lots
  • Applies multiplier / min / step
  • Converts lots → volume using QuantityToVolumeInUnits(lots)
  • Sends the order using an overload that accepts double volume

This is what makes it robust even when brokers enforce different lot precision rules.


⚙️ Parameters explained (with icons)

🧩 Core

  • 🧭 Mode
    • Master = publishes signals
    • Slave = reads signals and copies trades
  • 🧷 Copy Group Id
    • Communication channel. MASTER and SLAVE must match (e.g., DEFAULT)
  • ⏱️ Poll Interval (sec)
    • SLAVE checks new signals every N seconds
  • 🐞 Debug Mode
    • Prints detailed logs (recommended during setup)


🗺️ Symbol Translation

  • 🧾 Symbol Map (MASTER=SLAVE;...)
    • Example: USTEC=US100;XAUUSD=GOLD;NAS100=USTEC


🎚️ Volume scaling (MOST IMPORTANT) ✅

🔢 Global multiplier

  • Volume Multiplier
    • Scales all copied lots:
    • desiredLots = masterLots * VolumeMultiplier

🎛️ Per-symbol multiplier (your main tool)

  • 🧷 Volume Multiplier Map (SYM=mult;...)
    • Overrides multiplier per symbol (SLAVE-side symbol)
    • Example:
      • US100= 0. 10
      • Italian format is also OK: US100=0,10

✅ This is how you achieve: 1. 00 on MASTER → 0. 10 on SLAVE


🧱 Broker lot constraints (min and step)

  • 🧱 Min Qty Default (0=off)
    • Global minimum lots if enabled
  • 🧱 Min Qty Map (SYM=val;...)
    • Minimum lots per symbol
    • Example: US100=0. 10
  • 🪜 Qty Step Default (0=off)
    • Global step if enabled
  • 🪜 Qty Step Map (SYM=val;...)
    • Step per symbol
    • Example: US100=0. 10 → allowed values: 0. 10, 0 .20, 0.30…


🧯 Safety behaviors

  • 🧷 Use Min Qty as Fixed Lots
    • If true: SLAVE ignores master size and always uses MinQty (fixed sizing)
  • ⚠️ BelowMin Behavior
    • UseMin = if below min → raise to min
    • Skip = if below min → don’t open
  • 🔁 BadVolume Attempts
    • If broker returns BadVolume, tries small adjustments up to N times


🎯 SL/TP copy logic

  • 🛡️ Copy SL/TP as Distance when Symbol differs
    • If MASTER and SLAVE symbols differ:
    • SL/TP is copied as distance from entry, not absolute price
    • This keeps risk controls consistent across instruments


✅ Recommended setup (USTEC → US100, SLAVE lot = 0. 10)

On the SLAVE:

🗺️ Symbol translation:

  • Symbol Map = USTEC=US100

🎛️ Volume scaling:

  • Volume Multiplier Map = US100=0,10

🧱 Broker constraints:

  • Min Qty Map = US100=0,10
  • Qty Step Map = US100=0,10

Result:

  • ✅ MASTER 1. 00 → SLAVE 0. 10 on US100


☁️ Important: Local/VPS only (not Cloud) ❌

🖥️ Local/VPS ✅

Works because MASTER and SLAVE share the same LocalStorageScope .Device (same machine/environment).

☁️ cTrader Cloud ❌

Does not work because Cloud instances are isolated, so they don’t share LocalStorage and the SLAVE can’t see MASTER signals.

✅ Conclusion:

  • ✔️ Use on the same PC or on a VPS where both instances run together
  • ❌ For Cloud you need an external relay (HTTP/WebSocket server)



交易概览
4.3
评价:3
5
67 %
4
0 %
3
33 %
2
0 %
1
0 %
客户评价
December 15, 2025
Practical review companion for prop challenge trading. it keeps behavior closer to funded account rules, especially when used for protecting the account while following a plan. For a prop account, I would keep daily loss near 1 percent and total DD under 3 percent. The product makes most sense when the goal is stable rules, not aggressive growth.
December 14, 2025
December 14, 2025
Nice workflow helper for a more controlled workflow. It helps with protecting the account while following a plan, but one bad setting can still break the challenge. For a prop account, I would keep daily loss near 1 percent and total DD under 3 percent. I would still keep manual review in the process.
Signal
Indices
Commodities
GBPUSD
RSI
Bollinger
Fibonacci
Scalping
AI
XAUUSD
NAS100
MACD
BTCUSD
Forex
Breakout
EURUSD
NZDUSD
Martingale
Prop
ZigZag
Supertrend
Fair Value Gap
SMC
Crypto
Grid
Stocks
ATR
USDJPY
VWAP
cTrader Store 提供的所有产品,包括交易机器人、指标和插件,均由第三方开发者提供,仅供信息参考和技术访问之用。cTrader Store 并非经纪商,不提供投资建议、个人推荐或任何未来业绩保证。

该作者的其他作品

指标
AI
ATR
+27
Read aggressive flow in real time. Flexible resets (Day/Week/Month), optional EMA smoothing, and non-repainting cumulati
cBot
AI
ATR
+27
The Prop-Ready Bot The Definitive Automaton for Challenges 🛡️ V2.0
指标
AI
Grid
+17
Editions: Free (core VWAP + bands) · Pro (multi‑VWAP, click‑to‑anchor, alerts).
cBot
AI
ATR
+21
A price-action-first algorithm to trade Breakout, Approach, and Return around prior High/Low levels—with Prop-style risk
指标
AI
ATR
+27
Volume Bubbles is a lightweight yet powerful visual indicator for cTrader
cBot
AI
ATR
+27
AILevelTrader — Multi-AI Consensus Trading Bot 11 AI providers. One consensus. Prop Firm Ready.
1.9
盈利系数
4%
最大回撤
指标
AI
ATR
+27
Want a cBot based on this indicator? Contact us!
cBot
AI
ATR
+27
The Elliott Wave Pro Bot is a sophisticated and highly configurable algorithmic trading system
cBot
AI
ATR
+27
N.B.: Results with an initial invested capital of 100 euros.
cBot
AI
ATR
+8
Breakout scalping with prop-firm grade equity control.
指标
Prop
Forex
+15
ZigZag Free is a clean swing-detection tool that marks significant pivot highs/lows
指标
ZigZag
Indices
+2
Auto Trendlines, Fibonacci, Pitchfork and Patterns from non‑repainting pivots. One‑click Presets, targeted Alerts, and a

猜您喜欢

cBot
ATR
Forex
EMA-Crossover-Bot mit ADX-Filter:Trend-Trading mit ATR-basiertem Risikomanagement und Trailing Stop.
cBot
Fixed Risk %
Break & Retest
Check out this new bot! It’s designed for breakout and trend riding using a mix of RSI, Supertrend, and top-down analysi
12.7%
投资 回报率
1.35
盈利系数
62.5%
最大回撤
cBot
MACD
Forex
+5
CRT Trading_bot
100%
投资 回报率
2.13
盈利系数
23.59%
最大回撤
cBot
Ichimoku
AI Trading
+5
16 filters scan every asset. 12 AI models vote. One decision: the best short, at the right time.
2
盈利系数
4%
最大回撤
cBot
ATR
MACD
+3
USDJPY M15 cBot for $1,000 accounts with auto-scaling, pyramiding and multi-layer risk control.
7.1%
投资 回报率
2.25
盈利系数
31.33%
最大回撤
cBot
Prop
Forex
+11
Manage trades visually! Secure profits with Auto Partials & Trailing Shield. Works on all cTrader markets.
35.2%
投资 回报率
4
盈利系数
0%
最大回撤
cBot
SMC
Prop
+12
Risk On Trade | Auto Position Size Calculator | Risk & Reward Tool | Auto Lot Size Calculator
cBot
BTCUSD
Crypto
CBOT FTH BTCUSD M5 is an automated trading bot using trend-following
35.5%
投资 回报率
1.17
盈利系数
24.43%
最大回撤
cBot
Grid
Forex
+2
Resolver Algo Bot,Sophisticated, Perfect algorithm ! Daily ROI 5 to 24%.
cBot
ATR
Grid
+4
🌞 Smart Gold Grid. ATR Precision. +35% in 30 Days🌞
35.2%
投资 回报率
2.12
盈利系数
5.18%
最大回撤
cBot
Forex
EURUSD
Easy Trade, Just Plug and Play!
cBot
ATR
RSI
Hedging AI
cBot
Grid
XAUUSD
+2
GOLD Trade Free Demo at https://ctrader.com/products/1729
cBot
EMA
Volume
+5
Sniper Entry Bot – Advanced EMA Crossover Trading Robot for cTrader
677%
投资 回报率
2.52
盈利系数
11.53%
最大回撤
cBot
AI
RSI
+3
RSI Extreme Reversal Bot – XAGUSD M15
14%
投资 回报率
41.17
盈利系数
21%
最大回撤
cBot
AI
MACD
+10
Low Risk Trading Bot, This Bot Focus on Max Consecutive Winning Trades and improve on accuracy where to enter the trade
11.2%
投资 回报率
3.85
盈利系数
31%
最大回撤
"FeLo-Gold" 标识
人气
4.5
(2)
$100
cBot
Grid
Stocks
+3
Fully automated Bot for Gold
355%
投资 回报率
2.5
盈利系数
0.2%
最大回撤
cBot
ATR
EMA
+5
XAUUSD trading bot designed to capture intraday impulses with disciplined risk control and fast execution.
10.1%
投资 回报率
1.05
盈利系数
60.8%
最大回撤
42.1M
交易量
6.13M
盈利点数
157
销售
6.51K
免费安装