present
新規登録で初回購入時に$50オフ
Trading product for TradeCopierBot cBot Signal Indices, image 1
TradeCopierBot
cBot
15 購入済
バージョン 1.0、Dec 2025
Windows、Mac, Web
4.3
レビュー: 3
Trading product for TradeCopierBot cBot Signal Indices, image 2
Trading product for TradeCopierBot cBot Signal Indices, image 3
42.11M
取引数量
6.13M
獲得pips
245
販売
9.15K
無料インストール

説明

🚀 TradeCopierBot — 高速でクリーン、ブローカーに強いトレードコピー(ローカル/VPS)🔁✨

トレードを MASTER アカウントから1つ以上の SLAVE アカウントへ、実際の取引環境向けに設計された軽量でイベント駆動型のコピーツールでコピーします: 異なるブローカー、異なるシンボル名、異なるロットルール
マルチアカウント実行に最適リスクスケーリング、および 戦略配布—詳細なデバッグログ付きで、常に何が起きているか把握できます。🧠📈

ローカル/VPS セットアップ(同一マシン)に最適化。
❌ cTrader Cloudには対応していません(インスタンスが分離されているため、シグナルを共有できません)。☁️🚫

注意:異なるcTraderアカウントが2つある場合は、2つのcBotを購入する必要があります。そうしないとコピーできません。ご不明な点はお気軽にお問い合わせください。

🧠 動作の仕組み(MASTER → SLAVE)🧩

🔁 1) シグナル転送(トレードの「移動」方法)

このコピーツールは cTrader LocalStorage(デバイススコープ) を共有の「メッセージバス」として使用します。

MASTER

  • ポジションイベントを監視: オープン / 修正 / クローズ
  • シグナル TradeSignal を作成(OPEN / MODIFY / CLOSE)
  • それを signalsリスト に追加(LocalStorageScope.Device内)
  • SLAVEがすぐに読めるように Flush() を呼び出す

SLAVE

  • 一定間隔で タイマー を実行(ポーリング間隔 秒ごと)
  • Reload() を呼び出す
  • シグナルリストを読み込む
  • 新しいシグナルのみ処理(_lastSignalIndexProcessed を使用)


🧷 2) ポジションマッピング(CLOSEが機能するために)

SLAVEがトレードをオープンするとき、以下を保存します:

🧩 MasterPositionId → SlavePositionId

このマッピングはLocalStorageにも保存され、再起動後も保持されます:

  • ✅ 再起動後もCLOSEが機能
  • ✅ MODIFYも正しいポジションを見つける


🧭 3) シンボル変換(MASTERシンボル → SLAVEシンボル)

🗺️ シンボルマップ(MASTER=SLAVE;...)

ブローカーやアカウント間でシンボル名が異なる場合に使用。

フォーマット:

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

例(あなたの場合):

  • MASTERが USTEC をオープン
  • SLAVEは US100 を取引する必要がある

➡️ USTEC=US100

✅ 左側 = MASTERから届くシンボル
✅ 右側 = SLAVEブローカーのシンボル


📏 4) ボリュームロジック(重要な部分)🔥

✅ ロット/数量単位で動作(小数点対応)

小数点(0.10、0.01など)を扱うために、SLAVEは:

  • 希望の ロット数 を計算
  • 乗数 / 最小値 / ステップを適用
  • ロットを ボリューム に変換(QuantityToVolumeInUnits(lots) を使用)
  • double型のボリュームを受け入れるオーバーロードを使って注文を送信 ✅

これにより、ブローカーが異なるロット精度ルールを強制しても堅牢に動作します。


⚙️ パラメータ説明(アイコン付き)

🧩 コア

  • 🧭 モード
    • Master = シグナルを発行
    • Slave = シグナルを読み取りトレードをコピー
  • 🧷 コピーグループID
    • 通信チャネル。MASTERとSLAVEで一致させる必要があります(例: DEFAULT
  • ⏱️ ポーリング間隔(秒)
    • SLAVEが新しいシグナルをN秒ごとにチェック
  • 🐞 デバッグモード
    • 詳細なログを出力(セットアップ時に推奨)


🗺️ シンボル変換

  • 🧾 シンボルマップ(MASTER=SLAVE;...)
    • 例: USTEC=US100;XAUUSD=GOLD;NAS100=USTEC


🎚️ ボリュームスケーリング(最重要)✅

🔢 グローバル乗数

  • ボリューム乗数
    • コピーされたすべてのロットをスケール
    • desiredLots = masterLots * VolumeMultiplier

🎛️ シンボルごとの乗数(主なツール)

  • 🧷 ボリューム乗数マップ(SYM=mult;...)
    • シンボルごとに乗数を上書き(SLAVE側シンボル)
    • 例:
      • US100= 0. 10
      • イタリア式フォーマットもOK: US100=0,10

✅ これにより、以下を実現できます: MASTERの1.00 → SLAVEの0.10


🧱 ブローカーのロット制約(最小値とステップ)

  • 🧱 最小数量デフォルト(0=オフ)
    • 有効時のグローバル最小ロット数
  • 🧱 最小数量マップ(SYM=val;...)
    • シンボルごとの最小ロット数
    • 例: US100=0. 10
  • 🪜 数量ステップデフォルト(0=オフ)
    • 有効時のグローバルステップ
  • 🪜 数量ステップマップ(SYM=val;...)
    • シンボルごとのステップ
    • 例: US100=0. 10 → 許容値:0.10、0.20、0.30…


🧯 セーフティ動作

  • 🧷 最小数量を固定ロットとして使用
    • もし true なら:SLAVEはマスターのサイズを無視し、常にMinQty(固定サイズ)を使用
  • ⚠️ BelowMin動作
    • UseMin = 最小未満なら最小に引き上げる
    • Skip = 最小未満ならオープンしない
  • 🔁 BadVolume試行
    • ブローカーがBadVolumeを返した場合、小さな調整を最大N回試みる


🎯 SL/TPコピーのロジック

  • 🛡️ シンボルが異なる場合、SL/TPを距離としてコピー
    • MASTERとSLAVEのシンボルが異なる場合:
    • SL/TPは絶対価格ではなく エントリーからの距離 としてコピーされる
    • これにより、異なる銘柄間でもリスク管理が一貫する


✅ 推奨設定(USTEC → US100、SLAVEロット=0.10)

SLAVE側で:

🗺️ シンボル変換:

  • Symbol Map = USTEC=US100

🎛️ ボリュームスケーリング:

  • Volume Multiplier Map = US100=0,10

🧱 ブローカー制約:

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

結果:

  • ✅ MASTERの1.00 → SLAVEのUS100で0.10


☁️ 重要:ローカル/VPSのみ(クラウドは不可)❌

🖥️ ローカル/VPS ✅

MASTERとSLAVEが同じ LocalStorageScope.Device(同一マシン/環境)を共有しているため動作します。

☁️ cTrader Cloud ❌

Cloudインスタンスは 分離されているため動作しません。LocalStorageを共有せず、SLAVEはMASTERのシグナルを認識できません。

✅ 結論:

  • ✔️ 同一PCまたは両方のインスタンスが同時に動作するVPSで使用してください
  • ❌ クラウドの場合は外部リレー(HTTP/WebSocketサーバー)が必要です



概要

AIによる概要
TradeCopierBot is a trade copying tool designed for use on the same local machine or VPS, enabling users to copy trades from a MASTER account to one or more SLAVE accounts. It supports different brokers, symbol names, and lot rules, facilitating multi-account execution, risk scaling, and strategy distribution. The bot operates by using cTrader’s LocalStorage (device scope) as a shared message bus where the MASTER publishes trade signals (open, modify, close), and the SLAVE periodically polls and processes these signals.

Key features include:

- Position mapping to maintain correct trade management across restarts.
- Symbol translation via customizable symbol maps to handle differing broker symbol names.
- Volume scaling with global and per-symbol multipliers, supporting decimal lot sizes and broker-specific minimum quantity and step constraints.
- Safety behaviors such as fixed lot sizing and handling of trades below minimum lot sizes.
- Stop loss and take profit copying as distance from entry price when symbols differ, preserving consistent risk control.

Parameters include mode selection (MASTER or SLAVE), communication group ID, polling interval, debug mode, symbol maps, volume multipliers, and broker lot constraints. The bot is not compatible with cTrader Cloud due to isolated instances but functions reliably on local or VPS setups where MASTER and SLAVE share the same environment.
取引プロフィール

カスタマーレビュー

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
Grid
+17
Editions: Free (core VWAP + bands) · Pro (multi‑VWAP, click‑to‑anchor, alerts).
cBot
AI
ATR
+27
The Prop-Ready Bot The Definitive Automaton for Challenges 🛡️ V2.0
インジケーター
AI
ATR
+27
Read aggressive flow in real time. Flexible resets (Day/Week/Month), optional EMA smoothing, and non-repainting cumulati
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
ATR
RSI
+23
TrueScalper AI PRO v4.0 turns live market structure into disciplined AI-filtered scalping execution.
20%
ROI
5
プロフィットファクター
cBot
AI
ATR
+27
N.B.: Results with an initial invested capital of 100 euros.
cBot
AI
ATR
+27
AILevelTrader — Multi-AI Consensus Trading Bot 11 AI providers. One consensus. Prop Firm Ready.
1.9
プロフィットファクター
インジケーター
AI
ATR
+27
Want a cBot based on this indicator? Contact us!
cBot
AI
Prop
+5
Premium algorithmic scalping for funded traders. Capture precise breakouts with ironclad risk management across all majo
14%
ROI
4
プロフィットファクター
インジケーター
Prop
Forex
+15
ZigZag Free is a clean swing-detection tool that marks significant pivot highs/lows
cBot
AI
ATR
+27
The Elliott Wave Pro Bot is a sophisticated and highly configurable algorithmic trading system

これも好きかも

cBot
RSI Scalping cBot scalper for volatile indexes.
cBot
RSI
Aggressive
automates entries based on the RSX indicator — a smoothed, low-lag variant of the classic RSI.
1.67
プロフィットファクター
cBot
AI
SMC
+18
Review and Parameter Guide for the "Moving Average" cBot
cBot
Grid
Forex
+11
Semi bot will manage your position by moving stoploss and cover loss with 3 martingale style
cBot
ATR
Aggressive
+1
SuperTrend Pro cBot is an automated trading system developed for cTrader, designed to trade USD/JPY on the H1 timeframe
1.68
プロフィットファクター
cBot
EMA
Stochastic
+3
A robust, scalping-leaning day trading cBot for major indices (US500, US100, JP225). Sell setups only. Presets included.
8.8%
ROI
6.72
プロフィットファクター
cBot
ATR
RSI
+3
The **US30 Trading Robot** is a fully automated trend-following algorithm designed specifically for the cTrader platform
25.6%
ROI
3.3
プロフィットファクター
cBot
ATR
RSI
+4
UltimateAI Trading Robot – Smart Trend & Momentum Trader for cTrader
60.1%
ROI
1.37
プロフィットファクター
cBot
Supertrend
Super tendance
cBot
Grid
Forex
+5
Gated mean-reversion grid cBot with MTF Stochastic entries, ADX trend filter, ATR target (auto) & layer basket stops.
2.34
プロフィットファクター
cBot
AI
RSI
+5
Algorithmic system for XAUUSD with microstructure models, adaptive volatility management, and optimized execution.
1594%
ROI
1.7
プロフィットファクター
cBot
AI
ATR
+9
Gold Predict AI – Advanced Predictive Trading for XAUUSD (M15)
cBot
ATR
RSI
Hedging AI
cBot
ADX
ATR
+5
SP500 M5 cBot focused on structured index setups, controlled fixed-lot risk and clean profile-based execution and profit
24.6%
ROI
10.65
プロフィットファクター
cBot
Grid
BTCUSD
+2
BTC m1 H1 Scalping
cBot
EMA
Balanced
+5
Sniper Entry Bot – Advanced EMA Crossover Trading Robot for cTrader
677%
ROI
2.5
プロフィットファクター
cBot
ATR
Simple and Effective Trading Panel with On-Screen Statistics and Trade Management Options.
cBot
TP Manager
Fixed Risk %
+5
Professional risk and trade management assistant for precise position sizing, execution and automated trade management.
18.2%
ROI
35
プロフィットファクター

価格

42.11M
取引数量
6.13M
獲得pips
245
販売
9.15K
無料インストール