PHP code example of elliotchance / independentreserve
1. Go to this page and download the library: Download elliotchance/independentreserve library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
elliotchance / independentreserve example snippets
use IndependentReserve\PublicClient;
use IndependentReserve\Currency;
$client = new PublicClient();
$marketSummary = $client->getMarketSummary(Currency::XBT, Currency::USD);
printf('%s: %s USD',
$marketSummary->getCreatedTimestamp()->format('r'),
$marketSummary->getDayAveragePrice()
);
// Fri, 26 Dec 2014 05:03:34 +0000: 323.21 USD
use IndependentReserve\PrivateClient;
use IndependentReserve\Currency;
$client = new PrivateClient('api_key', 'api_secret');
$address = $client->getBitcoinDepositAddress();
echo $address->getBitcoinAddress();
// 12a7FbBzSGvJd36wNesAxAksLXMWm4oLUJ
$client = new PrivateClient('api_key', 'api_secret');
$marketSummary = $client->getMarketSummary(Currency::XBT, Currency::USD);
$client = new PrivateClient('api_key', 'api_secret');
$openOrders = $client->getOpenOrders();
echo count($openOrders);
// 452
var_dump($openOrders[135]); // 136th order
foreach ($openOrders as $order) {
// ...
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.