Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
bitmex-candle-to-record
Advanced tools
Map a BitMEX Candle to a talib Record
npm install bitmex-candle-to-record
import bitmexCandleToRecord from 'bitmex-candle-to-record'
import Record from 'timeseries-record'
import { BitmexAPI } from 'bitmex-node'
const bitmex = new BitmexAPI()
(async () => {
const quotes = await bitmex.Trade.getBucketed({
binSize: '1d',
partial: false,
symbol: 'XBTUSD',
reverse: true
})
const records: Record[] = quotes.map(q => bitmexCandleToRecord(q, '1d'))
}) ()
BitMEX stores the time of the candle close in the timestamp
field
as opposed to the candle open (that most exchanges use). To convert
this representation of a candle to a Record
this API subtracts the
length of the session from each timestamp
, so the apparent time of a
Record
will not match its associated Candle
.
FAQs
Map a BitMEX Candle to a talib Record
We found that bitmex-candle-to-record demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.