@jmparsons/ccxt
Version:
A JavaScript / Python / PHP cryptocurrency trading library with support for 100+ exchanges
26 lines (19 loc) • 944 B
JavaScript
const ccxt = require ('../../ccxt.js')
const asciichart = require ('asciichart')
const asTable = require ('as-table')
const log = require ('ololog').configure ({ locate: false })
require ('ansicolor').nice
//-----------------------------------------------------------------------------
;(async function main () {
// experimental, not yet implemented for all exchanges
// your contributions are welcome ;)
const index = 4 // [ timestamp, open, high, low, close, volume ]
const ohlcv = await new ccxt.cex ().fetchOHLCV ('BTC/USD', '1m')
const lastPrice = ohlcv[ohlcv.length - 1][index] // closing price
const series = ohlcv.slice (-80).map (x => x[index]) // closing price
const bitcoinRate = ('₿ = $' + lastPrice).green
const chart = asciichart.plot (series, { height: 15, padding: ' ' })
log.yellow ("\n" + chart, bitcoinRate, "\n")
process.exit ()
}) ()
;