Class BitmexKline
- java.lang.Object
-
- org.knowm.xchange.bitmex.dto.marketdata.BitmexKline
-
public class BitmexKline extends Object
-
-
Constructor Summary
Constructors Constructor Description BitmexKline(String timestamp, String symbol, BigDecimal open, BigDecimal high, BigDecimal low, BigDecimal close, BigDecimal trades, BigDecimal volume, BigDecimal vwap, Long lastSize, Long turnover, BigDecimal homeNotional, BigDecimal foreignNotional)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimal
getClose()
BigDecimal
getForeignNotional()
BigDecimal
getHigh()
BigDecimal
getHomeNotional()
Long
getLastSize()
BigDecimal
getLow()
BigDecimal
getOpen()
String
getSymbol()
String
getTimestamp()
BigDecimal
getTrades()
Long
getTurnover()
BigDecimal
getVolume()
BigDecimal
getVwap()
String
toString()
-
-
-
Constructor Detail
-
BitmexKline
public BitmexKline(String timestamp, String symbol, BigDecimal open, BigDecimal high, BigDecimal low, BigDecimal close, BigDecimal trades, BigDecimal volume, BigDecimal vwap, Long lastSize, Long turnover, BigDecimal homeNotional, BigDecimal foreignNotional)
-
-
Method Detail
-
getTimestamp
public String getTimestamp()
-
getSymbol
public String getSymbol()
-
getOpen
public BigDecimal getOpen()
-
getHigh
public BigDecimal getHigh()
-
getLow
public BigDecimal getLow()
-
getClose
public BigDecimal getClose()
-
getTrades
public BigDecimal getTrades()
-
getVolume
public BigDecimal getVolume()
-
getVwap
public BigDecimal getVwap()
-
getLastSize
public Long getLastSize()
-
getTurnover
public Long getTurnover()
-
getHomeNotional
public BigDecimal getHomeNotional()
-
getForeignNotional
public BigDecimal getForeignNotional()
-
-