Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bitmex-candle

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitmex-candle

Interface for BitMEX candle

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

bitmex-candle Build status npm version

Interface for BitMEX candle

Install

npm install bitmex-candle

Use

import Candle from 'bitmex-candle'

The Candle interface is defined as

/**
 * An atomic unit of time-series data as returned by the BitMEX
 * exchange API.
 */
interface Candle {
    /**
     * Time that the current Candle closed, in ISO 8601 format.
     */
    timestamp: string,
    /**
     * Opening value of current Candle.
     */
    open: number,
    /**
     * Highest value observed during current Candle.
     */
    high: number,
    /**
     * Lowest value observed during current Candle.
     */
    low: number,
    /**
     * Closing value of current Candle.
     */
    close: number
    /**
     * Volume observed during current Candle.
     */
    volume: number,

    /**
     * Instrument symbol.
     */
    symbol?: string,
    /**
     * Number of trades recorded during current Candle.
     */
    trades?: number,
    /**
     * Volume-weighted average price.
     */
    vwap?: number,
    /**
     *
     */
    lastSize?: number,
    /**
     * Number of contracts exchanged during current Candle.
     */
    turnover?: number,
    /**
     *
     */
    homeNotional?: number,
    /**
     *
     */
    foreignNotional?: number
}

Keywords

FAQs

Package last updated on 30 Mar 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc