node-coinmarketcap
Version:
Node module to retrieve information from CoinMarketCap
41 lines (34 loc) • 1.72 kB
JavaScript
var CoinMarketCap = require(".")
var options = {
events: true,
refresh: 60, // Refresh time in seconds (Default: 60)
convert: "EUR" // Convert price to different currencies. (Default USD)
}
var coinmarketcap = new CoinMarketCap(options);
// Put event for price greater or equal than X
coinmarketcap.onGreater("BTC", 4000, (coin, event) => {
console.log("BTC price is greater than 4000 of your defined currency");
event.price = event.price + 100; // Increase the price that the event needs to be fired.
});
coinmarketcap.onLesser("BTC", 3000, (coin, event) => {
console.log("BTC price is lesser than 3000 of your defined currency");
event.price = event.price - 100; // Decrease the price that the event needs to be fired.
});
// Put event for percent change. You can define negative and positive percent changes.
coinmarketcap.onPercentChange7d("ETH", 15, (coin, event) => {
console.log("BTC has a percent change above 15% in the last 7 days");
event.percent = event.percent + 5; // Increase the percentile change that the event needs to be fired.
});
coinmarketcap.onPercentChange24h("ETH", -10, (coin, event) => {
console.log("BTC has a percent change beyond -10% in the last 24h");
event.percent = event.percent - 5; // Decrease the percentile change that the event needs to be fired.
});
coinmarketcap.onPercentChange1h("LTC", 10, (coin, event) => {
console.log(coin);
coinmarketcap.deleteEvent(event); // Deletes the event
});
// Put event on BTC with no conditions. It will trigger every 60 seconds (*) with information about that coin (*: Or the defined time in options)
coinmarketcap.on("BTC", (coin, event) => {
console.log(coin)
coinmarketcap.deleteEvent(event); // Deletes the event
});