How to use the node-bitbankcc.publicApi function in node-bitbankcc

To help you get started, we’ve selected a few node-bitbankcc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github bitbankinc / sample-xrp-market-making-bot / lib / logic.js View on Github external
var bitbank = require("node-bitbankcc");
var async = require("async");

// *****************
// 設定 / Settings
// *****************
var api = bitbank.privateApi("your api key", "your private key");
var publicApi = bitbank.publicApi();
var orderAmout = 100; // 注文数量 / order amount
var maxHoldXrp = 10000.0; // XRPの最大保有量 / Max BTC holding amount
var spreadPercentage = 0.01; // スプレッド設定値 1% / Spread
// 例) 1XRP=50円の場合、売り注文と買い注文を中央値から0.5円離した価格に提示する
var pair = "xrp_jpy";

module.exports.trade = function() {
  console.log("--- prepare to trade ---");

  async.waterfall([
    function(callback) {
      // アセット取得
      api.getAsset().then(function(res){
        callback(null, res);
      });
    },

node-bitbankcc

node-bitbankcc

MIT
Latest version published 1 month ago

Package Health Score

64 / 100
Full package analysis

Popular node-bitbankcc functions