• Home
  • Cockpit
  • How To
    • Get Started!
      • Remote Trade Copier
      • Signal Follower
      • Signal Provider
    • Knowledge Base & FAQs
    • Tutorials
    • Blog
    • Trade Copier API Documentation
  • Features
    • Why Duplikium?
    • Key Features
    • Supported Trading platforms
      • Supported Platforms Overview
      • MT4
      • MT5
      • cTrader
      • TradingView
      • FXCM
      • LMAX
      • DXTrade
      • Tradovate (Beta)
      • NinjaTrader (Beta)
      • Fortex (Beta)
    • Screenshots
    • Videos
      • Video Tutorials
      • Video Reviews
    • Trade Copier Solutions
    • Referral Program
    • Media Kit
  • Pricing
    • Pricing Overview
    • Free Trial
    • Subscription Plan
    • Prepay Plan
    • Add-ons
Register Register for FREE Login
  • Home
  • Cockpit
  • How To
    • Get Started!
      • Remote Trade Copier
      • Signal Follower
      • Signal Provider
    • Knowledge Base & FAQs
    • Tutorials
    • Blog
    • Trade Copier API Documentation
  • Features
    • Why Duplikium?
    • Key Features
    • Supported Trading platforms
      • Supported Platforms Overview
      • MT4
      • MT5
      • cTrader
      • TradingView
      • FXCM
      • LMAX
      • DXTrade
      • Tradovate (Beta)
      • NinjaTrader (Beta)
      • Fortex (Beta)
    • Screenshots
    • Videos
      • Video Tutorials
      • Video Reviews
    • Trade Copier Solutions
    • Referral Program
    • Media Kit
  • Pricing
    • Pricing Overview
    • Free Trial
    • Subscription Plan
    • Prepay Plan
    • Add-ons

Add a Master or a Slave account in your Trade Copier cockpit

URL: https://www.trade-copier.com/webservice/v4/account/addAccount.php

Response: JSON object with the newly added account

 

Fields noted with a * are optional

Field NameField TypeField Description
type string 0=Master or 1=Slave
name string Custom account name
broker string mt4, mt5, ctrader, fxcm_fc, lmax, dxtrade, fortex or tradovate (always in lower case). For NinjaTrader please use Tradovate
login string Your broker account login /AccountId (ctidTraderAccountId) for ctrader / Account Number for Tradovate
password string Your broker account password
server string MT4: IG-DEMO, FxPro.com-Real02, Ava-Real 1, etc.
MT5: ActivTrades-Server, Binary.com-Server, FxPro-MT5, etc.
cTrader:  write "unknown"
LMax Demo: https://web-order.london-demo.lmax.com
LMax Live: https://api.lmaxtrader.com
FXCM_FC: http://www.fxcorporate.com/Hosts.jsp
DXtrade: url of the broker server without https
Tradovate/NinjaTrader: write "unknown", see access_token and expiry_token
Fortex: url of the broker server without https
environment string Real or Demo, only for FXCM, LMAX, cTrader and Tradovate/NinjaTrader
status int The account is 0=disabled, 1=enabled
group* string One of your existing template's ID.
subscription string The subscription key of  the subscription to assign to your account or "auto", which this automatically selects an available subscription for this account
alert_email* int Send warning email is 0=disabled, 1=enabled
access_token* string cTrader and Tradovate Only: The access token that your application will use to authenticate the messages sent to the cTrader Open API.
refresh_token* string cTrader Only: The refresh token that must be used for renewing the access token once it expires. The refresh token has no expiry time itself.
expiry_token* string cTrader and Tradovate Only: The number of seconds that must pass before the access token expires (by default, the value of this key equals 2628000). The expiry_token must be "yyyy-mm-dd hh:mm:ss" with timezone CET.
client_id*  string cTrader Only: The unique identifier of your Open API application. Please refer to this link to get your own clientId and Secret Key https://help.ctrader.com/open-api/account-authentication/#attaining-an-access-token
client_secret* string cTrader Only: The secret key assigned to your Open API application.

PHP example


<?php

	$url="https://www.trade-copier.com/webservice/v4/account/addAccount.php";
	$headers =  array(
		'Content-Type: application/x-www-form-urlencoded',
		'Authorization: Bearer [[TOKEN]]',
	);
	
	// Open connection
	$ch = curl_init();
	
	// Setting the options
	curl_setopt($ch, CURLOPT_URL, $url);
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

	//We define the template, you can get the existing templates with the "getTemplates.php" webservice
	$template = 'DEF';//Template's ID
	//$template = null;//No Template
	
	//We define the subscription for the account, you can get available subscriptions with the "getSubscriptions.php" webservice
	$subscription = 'auto';//Automaticaly select an available subscription
	//$subscription = 'ABCD1234' ;//Subscription's key
	//$subscription = null;//No subscription
	
		
	// Adding data to POST
	$account = [
	  'type' => 1,//0=Master, 1=Slave
	  'name' => 'name',//Custom name for your account
	  'broker' => 'mt4',//mt4, mt5, ctrader, lmax, fxcm_fc
	  'login' => 'login12',
	  'password' => 'password',
	  'server' => 'fxpro.com',
	  'environment' => 'Demo', //Demo, Real
	  'status' => '0',//The account is 0=disabled, 1=enabled
	  'group' => $template,//Always an EMPTY string for Master
	  'subscription' => $subscription,//Always an EMPTY string for Master.
	  'alert_email' => '0'//0=disabled, 1=enabled
	];
	
	curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($account));
			
	// Execute request
	$json = json_decode(curl_exec($ch));

	// Close connection
	curl_close($ch);

	if(array_key_exists('account', $json))
	{
		//We access the added account data
		echo "New account added: ".$json->account->account_id." ".$json->account->name.
		" ".$json->account->login." ".$json->account->server;
	}
	else
	{
		//This is an error message that can be access like this:
		//echo $json->code." ".$json->error;
		echo json_encode($json);
	}
?>
Duplikium Trade Copier
 

HOME

Register for FREE

Login

Cockpit

HOW TO

Get started!

Tutorials

FAQs

Blog

API Documentation

FEATURES

Why Duplikium?

Key Features

Screenshots

Video Tutorials

Video Reviews

Trade Copier Solutions

Referral Program

Media Kit

SUPPORTED PLATFORMS

MT4 Brokers

MT5 Brokers

cTrader Brokers

TradingView

FXCM

LMAX

DXTrade

Tradovate (beta)

Fortex (beta)

NinjaTrader (beta)

PRICING

Free Trial

Subscription Plan

Prepay Plan

Add-ons

 
MARGIN TRADING DISCLAIMER
Futures, forex and CFD's on margin trading contains substantial risk and is not for every investor. An investor could potentially lose all or more than the initial investment. The high degree of leverage can work against you as well as for you. Risk capital is money that can be lost without jeopardizing ones’ financial security or lifestyle. Only risk capital should be used for trading and only those with sufficient risk capital should consider trading. Past performance is not necessarily indicative of future results. You should be aware of all the risks associated with futures, foreign exchange and CFD's trading, and seek advice from an independent financial advisor if you have any doubts.

SITE DISCLAIMER
Trades signals sent through this website are solely those of the customers quoted. They do not represent the opinions of Duplikium on whether to buy, sell or hold particular investments.
While Duplikium try to ensure that all of the information provided on this website is kept up-to-date and accurate, we accept no responsibility for any use made of the information provided. You agree not to hold Duplikium liable for decisions and trades that are based on information from this website. Duplikium cannot be held responsible for the software, broker or other issues that result in the failure to execute a trade command. It is inherent upon you, the client, to make sure you are aware of when trades have been taken, adjusted or closed.
The purchase, sale or advice regarding a particular investment can only be performed by a licensed Broker/Dealer. Neither our website nor our associates involved in the production and maintenance of these products or this website is a registered Broker/Dealer or Investment Advisor in any State or Federally-sanctioned jurisdiction. All purchasers of products referenced at this site are encouraged to consult with a licensed representative of their choice regarding any particular trade or trading strategy. No representation is being made that any account will or is likely to achieve profits or losses similar to those discussed on this website.
Please note that the servers names listed on this website are not a recommendation nor an advertising made by Duplikium. Duplikium is totally independent and has no partnership with any brokers.You have to make your own due diligence when selecting a broker.

SOFTWARE DISCLAIMER
Although rare, internet-based trading can involve technical risks related, but not limited to, Internet connection, software or hardware failures or delays. Duplikium implements a backup system to minimize such occurrences, but is not responsible for any losses or missed trading opportunities as a result of communication failures, disruptions or unexpected system failures.

TRADEMARKS DISCLAIMER
All product and company names are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
Any product names, logos, brands, and other trademarks or images featured or referred to within the trade-copier.com or duplikium.com website are the property of their respective trademark holders. These trademark holders are not affiliated with Duplikium, our products, or our websites. They do not sponsor or endorse Duplikium or any of our products.

HIGH-FREQUENCY TRADING (HFT) DISCLAIMER
High-Frequency Trading (HFT) strategies are accepted on the Duplikium platform as long as they remain within reasonable and standard operational practices.
However, Duplikium reserves the right, at its sole discretion, to suspend or disable any Client account at any time and without prior notice if the usage of HFT — or any other strategy — negatively impacts the performance, security, or availability of the service for other users.
It is strongly recommended that the Client intending to run HFT strategies contact Duplikium in advance to assess the technical feasibility and compatibility with the platform. Based on the Client’s use case, Duplikium may fine-tune the setup to ensure system stability and optimal operation.
Duplikium Copyright 2013-

Privacy Policy | Terms of Use | Business Conditions

www.trade-copier.com | www.duplikium.com
Duplikium SA registered in Switzerland under CHE-433.550.864, registered address is Faubourg du Lac 2, 2000 Neuchâtel, Switzerland

Modal Title

Facebook Twitter LinkedIn Telegram