Package com.wombat.mamda.orderbook
Interface MamdaBookAtomicLevelEntry
-
- All Superinterfaces:
MamdaBasicRecap
- All Known Implementing Classes:
MamdaBookAtomicListener
public interface MamdaBookAtomicLevelEntry extends MamdaBasicRecap
MamdaBookAtomicLevel is an interface that provides access to Price Level and Price Level Entry fields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Iterator
entryIterator()
char
getPriceLevelAction()
long
getPriceLevelActNumEntries()
char
getPriceLevelEntryAction()
Order book entry action to apply to the full order book.java.lang.String
getPriceLevelEntryId()
Order book entry Id.char
getPriceLevelEntryReason()
Reason for order book entry.long
getPriceLevelEntrySize()
Return the order book entry sizecom.wombat.mama.MamaDateTime
getPriceLevelEntryTime()
Return the time of order book entry update.com.wombat.mama.MamaPrice
getPriceLevelMamaPrice()
double
getPriceLevelNumEntries()
double
getPriceLevelPrice()
char
getPriceLevelSide()
double
getPriceLevelSize()
com.wombat.mama.MamaDateTime
getPriceLevelTime()
boolean
isVisible()
-
Methods inherited from interface com.wombat.mamda.MamdaBasicRecap
getActivityTime, getActivityTimeFieldState, getLineTime, getLineTimeFieldState, getPartId, getPartIdFieldState, getSendTime, getSendTimeFieldState, getSrcTime, getSrcTimeFieldState, getSymbol, getSymbolFieldState
-
-
-
-
Method Detail
-
getPriceLevelPrice
double getPriceLevelPrice()
-
getPriceLevelMamaPrice
com.wombat.mama.MamaPrice getPriceLevelMamaPrice()
-
getPriceLevelSize
double getPriceLevelSize()
- See Also:
MamdaBookAtomicLevel.getPriceLevelSize()
-
getPriceLevelAction
char getPriceLevelAction()
-
getPriceLevelSide
char getPriceLevelSide()
- See Also:
MamdaBookAtomicLevel.getPriceLevelSide()
-
getPriceLevelTime
com.wombat.mama.MamaDateTime getPriceLevelTime()
- See Also:
MamdaBookAtomicLevel.getPriceLevelTime()
-
getPriceLevelNumEntries
double getPriceLevelNumEntries()
-
getPriceLevelActNumEntries
long getPriceLevelActNumEntries()
-
getPriceLevelEntryAction
char getPriceLevelEntryAction()
Order book entry action to apply to the full order book. A : Add entry to the price level. U : Update existing entry in the price level. D : Delete existing entry from the price level.- Returns:
- The orderbook entry action.
-
getPriceLevelEntryReason
char getPriceLevelEntryReason()
Reason for order book entry.- Returns:
- The orderbook entry reason.
-
getPriceLevelEntryId
java.lang.String getPriceLevelEntryId()
Order book entry Id. (order ID, participant ID, etc.)- Returns:
- The entry id
-
getPriceLevelEntrySize
long getPriceLevelEntrySize()
Return the order book entry size- Returns:
- Order book entry size
-
getPriceLevelEntryTime
com.wombat.mama.MamaDateTime getPriceLevelEntryTime()
Return the time of order book entry update.- Returns:
- Time of order book entry update.
-
entryIterator
java.util.Iterator entryIterator()
-
isVisible
boolean isVisible()
-
-