Package com.illumon.modelfarm.fitterfarm
Interface FitDataUnderlying
- All Known Subinterfaces:
FitDataOptionChain
,FitDataOptionChainFutures
,FitDataOptionPrices
,FitDataVolSurface
- All Known Implementing Classes:
CoreFitData
,EquityFitData
,EquityFitDataOptionPrices
,EquityFitDataVolSurface
,FuturesCoreFitData
,FuturesFitData
,FuturesFitDataOptionPrices
,FuturesFitDataVolSurface
public interface FitDataUnderlying
A snapshot of market data needed to define an underlying security.
-
Method Summary
Modifier and Type Method Description DBDateTime
getTimestamp()
Gets the timestamp of the data snapshot.long
getUnderlyingId()
Gets the underlying id.String
getUnderlyingSym()
Gets the underlying symbol.String
getUnderlyingType()
Gets the type of underlying (e.g.
-
Method Details
-
getTimestamp
DBDateTime getTimestamp()Gets the timestamp of the data snapshot.- Returns:
- timestamp of the data snapshot.
-
getUnderlyingId
long getUnderlyingId()Gets the underlying id.- Returns:
- underlying id.
-
getUnderlyingSym
String getUnderlyingSym()Gets the underlying symbol.- Returns:
- underlying symbol.
-
getUnderlyingType
String getUnderlyingType()Gets the type of underlying (e.g. "Equity", "Future").- Returns:
- type of underlying (e.g. "Equity", "Future").
-