2.1.4 • Published 4 months ago

bitstamp-exc v2.1.4

Weekly downloads
44
License
ISC
Repository
github
Last release
4 months ago

Bitstamp exchange API module

Install

npm install bitstamp-exc

About

This module utilizes the Bitstamp Exchange API. It only covers the main API endpoints (for now). This document will guide you through a list of the endpoints that this module utilizes, along with explanation of initialization, input parameters, success and error responses, and examples.

Initialization

const Bitstamp = require('bitstamp-exc');

const bitstamp = new Bitstamp({
    key: 'your_api_key',
    secret: 'your_api_secret',
  }
);

The constructor initializes 2 more parameters: host and timeout. If not provided at model declaration, these parameters will be set to https://www.bitstamp.net and 5000 respectively.

Note: All data and errors are returned as objects, not as stringified JSON.

Note: All amounts, except the fee and price for exchange, are denominated in sub-units. This means 0.01 USD will be returned as 100, and 1.0 BTC will be returned as 100000000.

Errors format

We use the Node's native Error class to generate an error, to which we attach two custom properties: code and cause.

  • code represents the machine readable code for the certain error. Eg. exchange_server_error (for a list of all error codes used in the exchange OSS modules, see bellow)

  • cause contains the raw error object, returned from the system, be it the Node environment, the exchange server or something else We use the Error class because later, upon the error object, we can call the .stack property (or any other native property), that is auto-generated with the object. This way there is no need to assign it explicitly, when returning the error.

Example of an error message
{
  [Error: Bitstamp only supports BTC and USD as base and quote currencies, respectively.],
   code: 'internal_module_error',
   cause: 'some cause or an error stack'
}

Then, at the receiver side, you can easily call error.message to get the custom, human-readable error message, or error.code for the machine-readable one, and so on (provided that you call your received object error).

List of error codes
  • exchange_server_error: Indicates that the error has happened in and was received from the remote exchange server itself (Bitstamp).
  • internal_module_error: Indicates that the error has happened internally in the module. This means that a logical failure, a data manipulation failure has occurred or wrong input parameters have been passed to the exposed endpoint.
  • insufficient_funds: Indicates that placing a trade failed due to insufficient funds

Exposed endpoints

Ticker

Returns ticker information for a given currency pair

Input parameters

baseCurrency: The base currency of the currency pair

quoteCurrency: The quote currency of the currency pair

Example call
bitstamp.getTicker('BTC', 'USD', function(err, ticker) {
  if (err) {
    console.log(err);
  } else {
    console.log(ticker);
  }
});
Response on success
{
  baseCurrency: 'BTC',
  quoteCurrency: 'USD',
  bid: 649.89,
  ask: 650.12,
  lastPrice: 649.97,
  high24Hours: 652.55,
  low24Hours: 634.98,
  vwap24Hours: 647.37,
  volume24Hours: 1234567890 // 12.3456789 BTC
}

Order Book

Returns the current order book of Bitstamp in a custom organized object.

Input parameters

baseCurrency: The currency of baseAmount

quoteCurrency: The currency to determine the price quoteCurrency/baseCurrency

Example call
bitstamp.getOrderBook('BTC', 'USD', function (err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
  }
});
Response on success
{
  baseCurrency: "BTC",
  quoteCurrency: "USD",
  asks: [                   // List of entries with bitcoins for sale, sorted by lowest price first
    {
      price: 450.65,
      baseAmount: 44556677  // 0.44556677 BTC for sale
    }
    // ... more ask entries
  ],
    bids: [                 // List of entries for buying bitcoins, sorted by most highest price first
      {
        price: 450.31,
        baseAmount: 33445566 // Someone wants to buy 0.33445566 BTC
      }
    // ... more bid entries
  ]
}

Account Balance

Returns the available and total balance amounts of the account.

Input parameters

none

Example call
bitstamp.getBalance(function (err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
  }
});
Response on success
{
  available: {
    USD: 123,       // 1.23 USD
    BTC: 23000000   // 23 BTC
  }
  total: {
    USD: 123,
    BTC: 23000000
  }
}

Order Status

Fetches a trade object which contains the status and an array of the transactions to that trade, from Bitstamp. Constructs and returns an object with trade currency pair and accummulated amounts from all transactions of the trade.

Input parameters

An object that contains data about the trade to be fetched. Must have at least the following structure:

trade: {
  raw: {
    id: 123456789,       // Obligatory
    orderType: 'sell',   // Obligatory. must be 'sell' or 'buy'
    datetime: '2015-09-03T11:40:46.000Z' // Optional
  }
  // You can also add any other parameters you wish. Can be ISO-8601, UNIX timestamp or YYYY-mm-dd format.
}
Example call
bitstamp.getTrade(trade, function (err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
  }
});
Response on success
 {
    type: 'limit',
    state: 'closed',
    baseAmount: -200000000, // Sold 2.00000000 BTC...
    quoteAmount: 74526,     // ... for 745.26 USD
    baseCurrency: 'BTC'     // Currency of the baseAmount
    quoteCurrency: 'USD'    // Currency of the quoteAmount
    feeAmount: 11,          // Paid 0.11 USD to the exchange as commission for the order
    feeCurrency: 'USD',     // Currency of the feeAmount
    raw: {}                 // Exchange-specific object
 }

User Transactions

Returns a list of 'deposit' and 'withdrawal' type transaction objects, starting from the latest one, descending, fetched from your Bitstamp account. If the latestTransaction is provided, then fetch the transactions from the provided one, onwards. So, in fact, the "latest tx" will be the "earliest" in the Bistamp system. This is made according to the logic that in your system you have the latest transaction, and you want to fetch all the transaction, from your Bitstamp account, that happened after this transaction.

If this object parameter is not provided (null), return ALL transactions from the account. This might take a minute, if you've got a lot (tens of thousands) of transactions in your account.

NOTE: The Bitstamp API has a limit of 1000 objects per response and a limit of 600 requests per 10 min. If you are going to get a list of transactions starting from a very, very old transaction, and provided that you've got many transactions on your account (more than 600 000, and the tx you're looking for is older than that), you risk to go over the requests limit and getting your API IP blocked from Bitstamp.

Input parameters

An object that contains data about the latest trade fetched onwards from which to search for transactions. Must have at least the following structure:

var latestTransaction = {
  raw: {
    id: 10170901,
    datetime: '2015-12-19T14:55:57.000Z' // Obligatory. This is ISO-8601 format, but can also be UNIX timestamp or YYY-mm-dd format
  }
};
Example call
bitstamp.listTransactions(latestTransaction, function (err, data) {
  if (err) {
    console.log(err);
  } else {
    console.log(data);
    console.log(data.length); // to see the number of transactions found
  }
});
Response on success
[
  {
    externalId: '1234-2345-3456-4567',
    timestamp: '2015-12-19T14:55:57.000Z',
    state: 'relayed',
    amount: 400000,       // Transaction of 4,000.00 USD
    currency: 'USD',
    type: 'deposit',      // Transaction type. Can be 'deposit' or 'withdrawal'
    raw: {}
  },
  {
    externalId: '2345-3456-457-5678',
    timestamp: '2015-12-20T12:16:54.000Z',
    state: 'completed',
    amount: -2000000000, // Transaction of 20 BTC
    currency: 'BTC',
    type: 'withdrawal',
    raw: {}
   }
   // ... more transactions
]

Withdrawals

Request a withdrawal to be made (only BTC is supported)

Input parameters
ParamTypeDescription
amountIntegerAmount to withdraw in subunits
currencyStringCurrency of the amount
addressStringAddress to withdraw to (btc_address)
Example call
bitstamp.withdraw({amount: 10000, currency: 'BTC', address: 'btc_address'})
  .then(response) {
    // Handle response
  })
  .catch(err) {
    // Handle error
  })
Response on success
{
  externalId: '1235',
  state: 'pending'
}

Sell & Buy limit order (in one method)

Place a limit BUY or SELL trade (order), depending on the sign of the baseAmount argument. SELL if amount is negative BUY if amount is positive

Input parameters

{int} baseAmount: The amount in base currency to buy or sell on the exchange; If negative amount, place sell limit order. If positive amount, place buy limit order. Denominated in smallest sub-unit of the base currency

{float} limitPrice: The minimum/maximum rate that you want to sell/buy for. If baseAmount is negative, this is the minimum rate to sell for. If baseAmount is positive, this is the maximum rate to buy for. limitPrice must always strictly positive

{string} baseCurrency: The exchange's base currency. For Bitstamp it is always BTC

{string} quoteCurrency: The exchange's quote currency. For Bitstamp it is always USD

Example call
bitstamp.placeTrade(-1250000, 460.00, 'BTC', 'USD', function (err, data) {
    if (err) {
        console.log(err);
    } else {
        console.log(data);
    }
});
Response on success
{
  type: 'limit',
  state: 'open',
  baseAmount: 123456789,  // Buy 1.23456789 BTC
  baseCurrency: 'BTC',    // Currency of the baseAmount
  quoteCurrency: 'USD',   // Currency of the quoteAmount
  limitPrice: 500.00,     // Buy bitcoins at a maximum price of 500 USD/BTC
  raw: {
    orderType: 'buy'      // will be 'sell' if 'baseAmount' is negative
  }
}

Enjoy!

Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2.1.4

4 months ago

2.1.3

4 months ago

2.1.2

6 months ago

2.1.1

6 months ago

2.0.0

6 months ago

1.3.3

2 years ago

1.4.0

2 years ago

1.3.2

3 years ago

1.3.1

3 years ago

1.3.0

6 years ago

1.2.4

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

7 years ago