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

🚀 TradeCopierBot — 快速、干净且经纪商防护的交易复制(本地/VPS)🔁✨

将您的交易从 主账户复制到一个(或多个)从账户,使用为真实交易环境设计的轻量级事件驱动复制器: 不同经纪商,不同符号名称,不同手数规则
非常适合 多账户执行风险缩放策略分发——配有详细的调试日志,让您随时了解发生了什么。🧠📈

✅ 优化用于 本地 / VPS 设置(同一台机器)。
❌ 不适用于 cTrader Cloud(实例是隔离的,因此信号无法共享)。☁️🚫

注意:如果您有两个不同的 cTrader 账户,您需要购买两个 cBot;否则,您将无法复制它们。我们随时为您提供任何信息。

🧠 工作原理(主账户 → 从账户)🧩

🔁 1) 信号传输(交易如何“传递”)

此复制器使用 cTrader LocalStorage(设备范围) 作为共享的“消息总线”。

主账户

  • 监听仓位事件: 开仓 / 修改 / 平仓
  • 创建 TradeSignal(开仓 / 修改 / 平仓)
  • 将其附加到 信号列表 中,位于 LocalStorageScope.Device
  • 调用 Flush(),使从账户能立即读取

从账户

  • 每隔 轮询间隔 秒运行一个 定时器
  • 调用 Reload()
  • 读取信号列表
  • 仅处理 新信号(使用 _lastSignalIndexProcessed


🧷 2) 仓位映射(确保平仓功能正常)

当从账户开仓时,它会存储:

🧩 MasterPositionId → SlavePositionId

此映射也保存到 LocalStorage 中,因此重启后依然有效:

  • ✅ 重启后平仓仍然有效
  • ✅ 修改仍能找到正确仓位


🧭 3) 符号转换(主账户符号 → 从账户符号)

🗺️ 符号映射(主账户=从账户;...)

用于经纪商/账户之间符号名称不同的情况。

格式:

  • 主账户=从账户;主账户2=从账户2;...

示例(您的情况):

  • 主账户开仓 USTEC
  • 从账户必须交易 US100

➡️ USTEC=US100

✅ 左侧 = 来自主账户的符号
✅ 右侧 = 从账户经纪商的符号


📏 4) 手数逻辑(关键部分)🔥

✅ 以手数/数量工作(支持小数)

为处理小数(0.10、0.01 等),从账户:

  • 计算 期望手数
  • 应用 乘数 / 最小值 / 步长
  • 使用 手数 → 交易量 转换,调用 QuantityToVolumeInUnits(lots)
  • 使用接受 双精度交易量 的重载发送订单 ✅

这使得即使经纪商执行不同的手数精度规则,也能保持稳健。


⚙️ 参数说明(带图标)

🧩 核心

  • 🧭 模式
    • Master = 发布信号
    • Slave = 读取信号并复制交易
  • 🧷 复制组 ID
    • 通信通道。主账户和从账户必须匹配(例如,DEFAULT
  • ⏱️ 轮询间隔(秒)
    • 从账户每隔 N 秒检查新信号
  • 🐞 调试模式
    • 打印详细日志(建议设置时开启)


🗺️ 符号转换

  • 🧾 符号映射(主账户=从账户;...)
    • 示例: USTEC=US100;XAUUSD=GOLD;NAS100=USTEC


🎚️ 手数缩放(最重要)✅

🔢 全局乘数

  • 交易量乘数
    • 缩放所有复制的手数:
    • desiredLots = masterLots * VolumeMultiplier

🎛️ 每符号乘数(您的主要工具)

  • 🧷 交易量乘数映射(符号=乘数;...)
    • 覆盖每个符号的乘数(从账户符号)
    • 示例:
      • US100= 0. 10
      • 意大利格式也可以: US100=0,10

✅ 这样您就能实现: 主账户 1.00 → 从账户 0.10


🧱 经纪商手数限制(最小值和步长)

  • 🧱 默认最小数量(0=关闭)
    • 启用时的全局最小手数
  • 🧱 最小数量映射(符号=值;...)
    • 每个符号的最小手数
    • 示例: US100=0. 10
  • 🪜 默认步长(0=关闭)
    • 启用时的全局步长
  • 🪜 步长映射(符号=值;...)
    • 每个符号的步长
    • 示例: US100=0. 10 → 允许的值:0.10,0.20,0.30…


🧯 安全行为

  • 🧷 将最小数量用作固定手数
    • 如果 true:从账户忽略主账户大小,总是使用最小数量(固定大小)
  • ⚠️ 低于最小值行为
    • UseMin = 如果低于最小值 → 提升到最小值
    • Skip = 如果低于最小值 → 不开仓
  • 🔁 错误交易量尝试
    • 如果经纪商返回错误交易量,尝试最多 N 次小幅调整


🎯 止损/止盈复制逻辑

  • 🛡️ 当符号不同,复制止损/止盈为距离
    • 如果主账户和从账户符号不同:
    • 止损/止盈复制为 入场价的距离,而非绝对价格
    • 这保持了不同工具间风险控制的一致性


✅ 推荐设置(USTEC → US100,从账户手数 = 0.10)

从账户 上:

🗺️ 符号转换:

  • Symbol Map = USTEC=US100

🎛️ 手数缩放:

  • Volume Multiplier Map = US100=0,10

🧱 经纪商限制:

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

结果:

  • ✅ 主账户 1.00 → 从账户 US100 上的 0.10


☁️ 重要:仅限本地/VPS(不支持云)❌

🖥️ 本地/VPS ✅

之所以可行,是因为主账户和从账户共享相同的 LocalStorageScope.Device(同一台机器/环境)。

☁️ cTrader 云 ❌

不支持,因为云实例是 隔离的,它们不共享 LocalStorage,从账户无法看到主账户信号。

✅ 结论:

  • ✔️ 在同一台电脑或 VPS 上运行两个实例时使用
  • ❌ 云端需要外部中继(HTTP/WebSocket 服务器)



交易概览
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
cBot
ATR
RSI
+23
TrueScalper AI PRO v4.0 turns live market structure into disciplined AI-filtered scalping execution.
20%
投资 回报率
5
盈利系数
5%
最大回撤

猜您喜欢

cBot
ADX
EMA
+5
Momentum-focused trading system for DJ30 / Dow Jones 30 / US30, designed for controlled exposure and high-quality direct
12.8%
投资 回报率
5.27
盈利系数
6.12%
最大回撤
cBot
ATR
Risk Alerts
+3
ORB breakout-retest cBot for cTrader with ATR risk management, session controls, prop-firm safety protection.
1.76
盈利系数
4.33%
最大回撤
cBot
Forex
Crypto
+4
Creates buy limit orders automatically when the market drops.
cBot
Prop
Forex
+14
Automated ORB bot: Stop/Limit entries, EMA/PDH filters, auto-BE, and session trade limits.
cBot
ADX
EMA
+5
Precision-focused DAX cBot with selective entries, risk controls and advanced exposure management.
16.6%
投资 回报率
2.47
盈利系数
9.8%
最大回撤
cBot
ATR
Forex
+4
Automate SL & Trailing for manual trades. Independent Buy/Sell logic. Chandelier Exit & ATR support.
cBot
AI
RSI
+6
Prices Action Focus Bot, Please use default setting before making any changes!!! ENJOY!!!
cBot
XAUUSD
Bollinger
+1
Sfrutta il breakout delle bande di bollinger.
cBot
AI
ATR
+27
The Prop-Ready Bot The Definitive Automaton for Challenges 🛡️ V2.0
cBot
Scalping
ICT Framework cBot – Advanced Trading Automation for Any Pair & Timeframe
cBot
Grid
Forex
+9
Scalping bot with profit  400% per year
cBot
Grid
Forex
+9
This tool will help you spread your trades very quickly with a few clicks
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%
最大回撤
cBot
Indices
Scalping
HIGHLY PROFITABLE NASDAQ100 SCALPING ALGORITHM
7%
投资 回报率
3.46
盈利系数
8.66%
最大回撤
cBot
EMA
Volume
+5
Sniper Entry Bot – Advanced EMA Crossover Trading Robot for cTrader
677%
投资 回报率
2.52
盈利系数
11.53%
最大回撤
cBot
Scalping
Working with M1 timeframe. This is the best scalping bot.
cBot
ATR
RSI
+3
Forex Fury M1 Bot is an advanced automated trading system designed to operate on the M1 timeframe
cBot
AI
ATR
+5
No guessing — just confirmed breakouts, smart risk management, and disciplined execution. Less noise. More direction.
28.5%
投资 回报率
4.44
盈利系数
10.41%
最大回撤
42.1M
交易量
6.13M
盈利点数
173
销售
7.08K
免费安装