Introducing our MT4 SDKs for PHP and Laravel

Meet our new PHP SDK for MT4 API, which allows you to easily and efficiently integrate the functionality offered by dev4traders into your application.
https://github.com/dev4traders/mt4-sdk-php

Also Laravel specific SDK is available to simplify your work with the MT4 API in Laravel applications.
https://github.com/dev4traders/laravel-mt4-sdk

Here are a few examples:


use D4T\Mt4Sdk\Facades\MT4Manager;

// create an account
$account = MT4Manager::createAccount([ 'email' => '1@1.com', 'name' => 'Test Name' ]); 

//update an account 
$account = MT4Manager::updateAccount(124, [ 'email' => '1@1.com', 'name' => 'Test Name' ]);

Similar Posts