Add Unnamed exchange to markets
This commit is contained in:
@@ -89,7 +89,7 @@ Table of Contents
|
||||
- **Movement:** Displays latest blockchain transactions that are greater than a certain configurable amount
|
||||
- **Network:** Displays a list of peers that have connected to the coind wallet in the past 24 hours, along with useful addnode data that can be used to connect your own wallets to the network easier
|
||||
- **Top 100:** Displays the top 100 richest wallet addresses, the top 100 wallet addresses that have the highest total number of coins received based on adding up all received transactions, as well as a table and pie chart breakdown of wealth distribution. Additional support for omitting burned coins from top 100 lists
|
||||
- **Markets:** Displays a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history. The last known default exchange price is automatically converted to USD using the coingecko api from [https://www.coingecko.com/en/api](https://www.coingecko.com/en/api). The following 11 cryptocurrency exchanges are supported:
|
||||
- **Markets:** Displays a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history. The last known default exchange price is automatically converted to USD using the coingecko api from [https://www.coingecko.com/en/api](https://www.coingecko.com/en/api). The following 12 cryptocurrency exchanges are supported:
|
||||
- [AltMarkets](https://altmarkets.io)
|
||||
- [Bittrex](https://bittrex.com)
|
||||
- [Bleutrade](https://bleutrade.com)
|
||||
@@ -100,6 +100,7 @@ Table of Contents
|
||||
- [SouthXchange](https://southxchange.com)
|
||||
- [Stex](https://stex.com)
|
||||
- [Txbit](https://txbit.io) *\*no chart support due to a lack of OHLCV api data*
|
||||
- [Unnamed](https://unnamed.exchange)
|
||||
- [Yobit](https://yobit.io) *\*no chart support due to a lack of OHLCV api data*
|
||||
- **API:** A listing of available public API's that can be used to retrieve information from the network without the need for a local wallet. The following public API's are supported:
|
||||
- **RPC API calls** (Return data from coind)
|
||||
|
||||
@@ -0,0 +1,141 @@
|
||||
const request = require('postman-request');
|
||||
const base_url = 'https://api.unnamed.exchange/v1/Public/';
|
||||
const market_url_template = 'https://www.unnamed.exchange/Exchange?market={coin}_{base}';
|
||||
|
||||
function get_summary(coin, exchange, cb) {
|
||||
var summary = {};
|
||||
|
||||
request({ uri: base_url + 'Ticker?market=' + coin + '_' + exchange, json: true}, function (error, response, body) {
|
||||
if (error)
|
||||
return cb(error, null);
|
||||
else if (body.error != null)
|
||||
return cb(body.error, null);
|
||||
else {
|
||||
summary['bid'] = body.highestBuy;
|
||||
summary['ask'] = body.lowestSell;
|
||||
summary['high'] = body.high;
|
||||
summary['low'] = body.low;
|
||||
summary['volume'] = body.volume;
|
||||
summary['volume_btc'] = body.baseVolume;
|
||||
summary['last'] = body.close;
|
||||
summary['prev'] = body.open;
|
||||
summary['change'] = (body.change);
|
||||
|
||||
return cb(null, summary);
|
||||
}
|
||||
}).on('error', function(err) {
|
||||
return cb(error, null);
|
||||
});
|
||||
}
|
||||
|
||||
function get_trades(coin, exchange, cb) {
|
||||
var req_url = base_url + 'TradeHistory?market=' + coin + '_' + exchange;
|
||||
|
||||
request({ uri: req_url, json: true}, function (error, response, body) {
|
||||
if (error)
|
||||
return cb(error, null);
|
||||
else if (body.error != null)
|
||||
return cb(body.error, null);
|
||||
else {
|
||||
var trades = [];
|
||||
|
||||
for (var i = 0; i < body.length; i++) {
|
||||
trades.push({
|
||||
ordertype: body[i].type,
|
||||
price: body[i].price,
|
||||
quantity: body[i].amount,
|
||||
timestamp: parseInt(new Date(body[i].timestamp).getTime()/1000)
|
||||
});
|
||||
}
|
||||
|
||||
return cb(null, trades);
|
||||
}
|
||||
}).on('error', function(err) {
|
||||
return cb(error, null);
|
||||
});
|
||||
}
|
||||
|
||||
function get_orders(coin, exchange, cb) {
|
||||
var req_url = base_url + 'OrderBook?market=' + coin + '_' + exchange;
|
||||
|
||||
request({ uri: req_url, json: true}, function (error, response, body) {
|
||||
if (error)
|
||||
return cb(error, [], []);
|
||||
else if (body.error != null)
|
||||
return cb(body.error, null);
|
||||
else {
|
||||
var buys = [];
|
||||
var sells = [];
|
||||
|
||||
if (body['buy'].length > 0) {
|
||||
for (var i = 0; i < body['buy'].length; i++) {
|
||||
buys.push({
|
||||
price: body['buy'][i].price,
|
||||
quantity: body['buy'][i].amount
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if (body['sell'].length > 0) {
|
||||
for (var i = 0; i < body['sell'].length; i++) {
|
||||
sells.push({
|
||||
price: body['sell'][i].price,
|
||||
quantity: body['sell'][i].amount
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
return cb(null, buys, sells);
|
||||
}
|
||||
}).on('error', function(err) {
|
||||
return cb(error, null, null);
|
||||
});
|
||||
}
|
||||
|
||||
function get_chartdata(coin, exchange, cb) {
|
||||
var end = Date.now();
|
||||
|
||||
end = end / 1000;
|
||||
start = end - 86400;
|
||||
|
||||
var req_url = base_url + 'Chart?market=' + coin + '_' + exchange + '&minutes=15';
|
||||
|
||||
request({uri: req_url, json: true}, function (error, response, chartdata) {
|
||||
if (error)
|
||||
return cb(error, []);
|
||||
else {
|
||||
if (chartdata.error == null) {
|
||||
var processed = [];
|
||||
|
||||
for (var i = 0; i < chartdata.length; i++)
|
||||
processed.push([chartdata[i].openTime, parseFloat(chartdata[i].open), parseFloat(chartdata[i].high), parseFloat(chartdata[i].low), parseFloat(chartdata[i].close)]);
|
||||
|
||||
return cb(null, processed);
|
||||
} else
|
||||
return cb(chartdata.error, []);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
market_name: 'Unnamed',
|
||||
market_logo: 'iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABDlBMVEUAAADX4OwlPZ4mPp+wweDT3ezI1um8zeUkN5q4zOURFYMaMZjZ4e3T3esxc8fJ1ecgKZA3dsgxP5wUHos/TqSKrdtIgcyPqNVjebxQarZbjtETG4kRFYQRFYQQEoETGogTG4kVJI4PD38VJI4PD3/n6vDm6e8ucMYPEIDf5e7P2uvI1unI1ukfLZMmOJkiOZwYJY4oQqEaKpKkvuE+e8o9eslIWaoUHYpIWqsVIYwmOZqOsNw4Z7tiktKjt9uBms6Cmc1Gbbyhs9lmislXesGPpdOSpNB2isR3kMkPEYAPD38RFYMWJI4THIgPD38PD38TGocPD38PD38fQaQPD38ucMYPD3/x8fLu7/IQE4IIR+7cAAAAVXRSTlMA8+HY1PHm3t7c0Sv07+vj4t/f3tbR0dDOzszEvKaNe2EuIBsF/fv5+fbu6efm5N/e3dzZ2NbW1tXV1NHQzszMzMvKycnGxsbEv7SenJSPZ01FKh8NaswLygAAALtJREFUGNN1z8UaglAUReGDlIDdXWB3d3fnJd7/RYT7OXCga7b/2YY/JXn+8b3vDopy3I7dsAS4q8vu9dpdOVkTjSldOtYQQmO6J2tPfb8OAbqF9HyWgCwAiPysaEM4p2XaF2DvV2j0Ka34wxArVwrZIcdxbNNmrVdPABBhR0zQ4wkSTjYCRlFqzphTKRPRpqIYYosVYwYwEb7JGUN8syxhCK3jGBLbvDrQQc3sEhiEGkm6Adwk2Uj++P0G4e4ajxm8wgsAAAAASUVORK5CYII=',
|
||||
market_url_template: market_url_template,
|
||||
market_url_case: 'u',
|
||||
get_data: function(settings, cb) {
|
||||
var error = null;
|
||||
get_chartdata(settings.coin.toUpperCase(), settings.exchange.toUpperCase(), function (err, chartdata) {
|
||||
if (err) { chartdata = []; error = err; }
|
||||
get_orders(settings.coin.toUpperCase(), settings.exchange.toUpperCase(), function(err, buys, sells) {
|
||||
if (err) { error = err; }
|
||||
get_trades(settings.coin.toUpperCase(), settings.exchange.toUpperCase(), function(err, trades) {
|
||||
if (err) { error = err; }
|
||||
get_summary(settings.coin.toUpperCase(), settings.exchange.toUpperCase(), function(err, stats) {
|
||||
if (err) { error = err; }
|
||||
return cb(error, {buys: buys, sells: sells, chartdata: chartdata, trades: trades, stats: stats});
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
+12
-1
@@ -750,7 +750,7 @@ exports.markets_page = {
|
||||
"show_market_select": true,
|
||||
// exchanges: Enable/disable api integration with any of the available built-in exchanges
|
||||
// Enabled exchanges display a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history
|
||||
// Supported exchanges: altmarkets, bittrex, bleutrade, crex, dex-trade, freiexchange/freixlite, poloniex, southxchange, stex, txbit, yobit
|
||||
// Supported exchanges: altmarkets, bittrex, bleutrade, crex, dex-trade, freiexchange/freixlite, poloniex, southxchange, stex, txbit, unnamed, yobit
|
||||
"exchanges": {
|
||||
// altmarkets: a collection of settings that pertain to the altmarkets exchange
|
||||
"altmarkets": {
|
||||
@@ -864,6 +864,17 @@ exports.markets_page = {
|
||||
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
|
||||
"trading_pairs": [ "LTC/ETH" ]
|
||||
},
|
||||
// unnamed: a collection of settings that pertain to the unnamed exchange
|
||||
"unnamed": {
|
||||
// enabled: Enable/disable the unnamed exchange (true/false)
|
||||
// If set to false, the unnamed page will be completely inaccessible and no market data will be downloaded for this exchange
|
||||
"enabled": false,
|
||||
// trading_pairs: An array of market trading pair symbols
|
||||
// You can add as many trading pairs as necessary
|
||||
// All entries must specify your coins symbol as it is displayed on the exchange, followed by a slash (/) and ending with the symbol of the market or asset that is being traded against
|
||||
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
|
||||
"trading_pairs": [ "LTC/BTC" ]
|
||||
},
|
||||
// yobit: a collection of settings that pertain to the yobit exchange
|
||||
// NOTE: yobit does not display a 24-hour chart due to a lack of OHLCV api data
|
||||
"yobit": {
|
||||
|
||||
+12
-1
@@ -834,7 +834,7 @@
|
||||
"show_market_select": true,
|
||||
// exchanges: Enable/disable api integration with any of the available built-in exchanges
|
||||
// Enabled exchanges display a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history
|
||||
// Supported exchanges: altmarkets, bittrex, bleutrade, crex, dex-trade, freiexchange/freixlite, poloniex, southxchange, stex, txbit, yobit
|
||||
// Supported exchanges: altmarkets, bittrex, bleutrade, crex, dex-trade, freiexchange/freixlite, poloniex, southxchange, stex, txbit, unnamed, yobit
|
||||
"exchanges": {
|
||||
// altmarkets: a collection of settings that pertain to the altmarkets exchange
|
||||
"altmarkets": {
|
||||
@@ -948,6 +948,17 @@
|
||||
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
|
||||
"trading_pairs": [ "LTC/ETH" ]
|
||||
},
|
||||
// unnamed: a collection of settings that pertain to the unnamed exchange
|
||||
"unnamed": {
|
||||
// enabled: Enable/disable the unnamed exchange (true/false)
|
||||
// If set to false, the unnamed page will be completely inaccessible and no market data will be downloaded for this exchange
|
||||
"enabled": false,
|
||||
// trading_pairs: An array of market trading pair symbols
|
||||
// You can add as many trading pairs as necessary
|
||||
// All entries must specify your coins symbol as it is displayed on the exchange, followed by a slash (/) and ending with the symbol of the market or asset that is being traded against
|
||||
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
|
||||
"trading_pairs": [ "LTC/BTC" ]
|
||||
},
|
||||
// yobit: a collection of settings that pertain to the yobit exchange
|
||||
// NOTE: yobit does not display a 24-hour chart due to a lack of OHLCV api data
|
||||
"yobit": {
|
||||
|
||||
Reference in New Issue
Block a user