Class BitflyerTicker
- java.lang.Object
-
- info.bitrich.xchangestream.bitflyer.dto.BitflyerMarketEvent
-
- info.bitrich.xchangestream.bitflyer.dto.BitflyerTicker
-
public class BitflyerTicker extends BitflyerMarketEvent
Created by Lukas Zaoralek on 15.11.17.
-
-
Field Summary
-
Fields inherited from class info.bitrich.xchangestream.bitflyer.dto.BitflyerMarketEvent
timestamp
-
-
Constructor Summary
Constructors Constructor Description BitflyerTicker(String productCode, String timestamp, String tickId, BigDecimal bestBid, BigDecimal bestAsk, BigDecimal bestBidSize, BigDecimal bestAskSize, BigDecimal totalBidDepth, BigDecimal totalAskDepth, String ltp, BigDecimal volume, BigDecimal volumeByProduct)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigDecimal
getBestAsk()
BigDecimal
getBestAskSize()
BigDecimal
getBestBid()
BigDecimal
getBestBidSize()
CurrencyPair
getCurrencyPair()
String
getLtp()
String
getProductCode()
String
getTickId()
BigDecimal
getTotalAskDepth()
BigDecimal
getTotalBidDepth()
BigDecimal
getVolume()
BigDecimal
getVolumeByProduct()
Ticker
toTicker()
-
Methods inherited from class info.bitrich.xchangestream.bitflyer.dto.BitflyerMarketEvent
getDate, getTimestamp
-
-
-
-
Constructor Detail
-
BitflyerTicker
public BitflyerTicker(String productCode, String timestamp, String tickId, BigDecimal bestBid, BigDecimal bestAsk, BigDecimal bestBidSize, BigDecimal bestAskSize, BigDecimal totalBidDepth, BigDecimal totalAskDepth, String ltp, BigDecimal volume, BigDecimal volumeByProduct)
-
-
Method Detail
-
getProductCode
public String getProductCode()
-
getTickId
public String getTickId()
-
getBestBid
public BigDecimal getBestBid()
-
getBestAsk
public BigDecimal getBestAsk()
-
getBestBidSize
public BigDecimal getBestBidSize()
-
getBestAskSize
public BigDecimal getBestAskSize()
-
getTotalBidDepth
public BigDecimal getTotalBidDepth()
-
getTotalAskDepth
public BigDecimal getTotalAskDepth()
-
getLtp
public String getLtp()
-
getVolume
public BigDecimal getVolume()
-
getVolumeByProduct
public BigDecimal getVolumeByProduct()
-
getCurrencyPair
public CurrencyPair getCurrencyPair()
-
toTicker
public Ticker toTicker()
-
-