com.dukascopy.api
Interface ITick


public interface ITick

Tick data

Author:
Denis Larka

Method Summary
 double getAsk()
          Best ask price on the market
 double[] getAsks()
          All ask prices on the market
 double getAskVolume()
          Volume available at the best ask price on the market
 double[] getAskVolumes()
          All ask volumes on the market, correspondingly to the asks returned from getAsks() method
 double getBid()
          Best bid price on the market
 double[] getBids()
          All bid prices on the market
 double getBidVolume()
          Volume available at the best bid price on the market
 double[] getBidVolumes()
          All bid volumes on the market, correspondingly to the bids returned from getBids() method
 long getTime()
          Time of the tick
 

Method Detail

getTime

long getTime()
Time of the tick

Returns:
time

getAsk

double getAsk()
Best ask price on the market

Returns:
ask price

getBid

double getBid()
Best bid price on the market

Returns:
bid price

getAskVolume

double getAskVolume()
Volume available at the best ask price on the market

Returns:
ask volume

getBidVolume

double getBidVolume()
Volume available at the best bid price on the market

Returns:
bid volume

getAsks

double[] getAsks()
All ask prices on the market

Returns:
ask prices

getBids

double[] getBids()
All bid prices on the market

Returns:
bid prices

getAskVolumes

double[] getAskVolumes()
All ask volumes on the market, correspondingly to the asks returned from getAsks() method

Returns:
ask volumes

getBidVolumes

double[] getBidVolumes()
All bid volumes on the market, correspondingly to the bids returned from getBids() method

Returns:
bid volumes


Copyright © 2009. All Rights Reserved.