ibf/mt4-sdk-php

SDK for using the Metatrader4 API in PHP

v1.0.1 2022-12-04 09:14 UTC

This package is auto-updated.

Last update: 2024-05-17 09:54:22 UTC


README

Latest Version PHP Version Total Downloads

Here are a few examples:

$manager = new \D4T\MT4Sdk\Manager('<api-key>', '<mt4-api-endpoint>')

// creating a account
$account = $manager->createAccount([
    'email' => '1@1.com',
    'name' => 'My new campaign'
]);
// listing all logins
$logins = $manager->accounts();

foreach($logins as $login) {
    echo $login;
}

Installation

You can install the package via composer:

composer require dev4traders/mt4-sdk-php

You must also install Guzzle

composer require guzzlehttp/guzzle

Usage

To get started, you must first new up an instance of D4T\MT4Sdk\Manager

use D4T\MT4Sdk\Manager;

$manager = new \D4T\MT4Sdk\Manager('<api-key>', '<mt4-api-endpoint>')

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

License

The MIT License (MIT). Please see License File for more information.