metaapi-fix.cloud-sdk
v1.0.2
Published
SDK for MetaApi, a professional cloud forex API which includes MetaTrader REST API and MetaTrader websocket API. Supports both MetaTrader 5 (MT5) and MetaTrader 4 (MT4). CopyFactory copy trading API included. (https://metaapi.cloud)
Downloads
1,217
Maintainers
Readme
metaapi.cloud SDK for node.js and browser javascript
MetaApi is a powerful, fast, cost-efficient, easy to use and standards-driven cloud forex trading API for MetaTrader 4 and MetaTrader 5 platform designed for traders, investors and forex application developers to boost forex application development process. MetaApi can be used with any broker and does not require you to be a brokerage.
CopyFactory is a simple yet powerful copy-trading API which is a part of MetaApi. See below for CopyFactory readme section.
MetaApi is a paid service, however we offer a free tier for testing and personal use.
The MetaApi pricing was developed with the intent to make your charges less or equal to what you would have to pay for hosting your own infrastructure. This is possible because over time we managed to heavily optimize our MetaTrader infrastructure. And with MetaApi you can save significantly on application development and maintenance costs and time thanks to high-quality API, open-source SDKs and convenience of a cloud service.
Official REST and websocket API documentation: https://metaapi.cloud/docs/client/
Please note that this SDK provides an abstraction over REST and websocket API to simplify your application logic.
For more information about SDK APIs please check esdoc documentation in source codes located inside lib folder of this npm package.
Working code examples
Please check this short video to see how you can download samples via our web application.
You can also find code examples at examples folder of our github repo or in the examples folder of the npm package.
We have composed a short guide explaining how to use the example code
Installation
npm install --save metaapi.cloud-sdk
Installing SDK in browser SPA applications
npm install --save metaapi.cloud-sdk
Installing SDK in browser HTML applications
<script src="unpkg.com/metaapi.cloud-sdk/index.js"></script>
<script>
const token = '...';
const api = new MetaApi(token);
</script>
Connecting to MetaApi
Please use one of these ways:
- https://app.metaapi.cloud/token web UI to obtain your API token.
- An account access token which grants access to a single account. See section below on instructions on how to retrieve account access token.
Supply token to the MetaApi class constructor.
import MetaApi from 'metaapi.cloud-sdk';
const token = '...';
const api = new MetaApi(token);
Retrieving account access token
Account access token grants access to a single account. You can retrieve account access token via API:
let accountId = '...';
let account = await api.metatraderAccountApi.getAccount(accountId);
let accountAccessToken = account.accessToken;
console.log(accountAccessToken);
Alternatively, you can retrieve account access token via web UI on https://app.metaapi.cloud/accounts page (see this video).