Inherited by com.wombat.mamda.options.MamdaOptionChainView
Name | |
---|---|
void | onOptionChainRecap(final MamdaSubscription subscription, final MamdaOptionChainListener listener, final MamaMsg msg, final MamdaOptionChain chain) |
void | onOptionContractCreate(final MamdaSubscription subscription, final MamdaOptionChainListener listener, final MamaMsg msg, final MamdaOptionContract contract, final MamdaOptionChain chain) |
void | onOptionSeriesUpdate(final MamdaSubscription subscription, final MamdaOptionChainListener listener, final MamaMsg msg, final MamdaOptionSeriesUpdate event, final MamdaOptionChain chain) |
void onOptionChainRecap(
final MamdaSubscription subscription,
final MamdaOptionChainListener listener,
final MamaMsg msg,
final MamdaOptionChain chain
)
Parameters:
Reimplemented by: com::wombat::mamda::options::MamdaOptionChainView::onOptionChainRecap
Method invoked when an updated full option chain is available. The reason for the invocation may be any of the following:
void onOptionContractCreate(
final MamdaSubscription subscription,
final MamdaOptionChainListener listener,
final MamaMsg msg,
final MamdaOptionContract contract,
final MamdaOptionChain chain
)
Parameters:
Reimplemented by: com::wombat::mamda::options::MamdaOptionChainView::onOptionContractCreate
Method invoked when a new contract is created in the option chain. This method gets invoked exactly once for every option contract in the chain. The primary purpose of this method is to allow a user application to initialize any per-contract data as well to register handlers for trades and quotes. Note: This method differs from onOptionSeriesUpdate() as follows: onOptionContractCreate() gets invoked every time a contract is added, even for the initial value; onOptionSeriesUpdate() is intended to report especially interesting events and is only invoked when a contract is added/removed after the initial value has been received.
void onOptionSeriesUpdate(
final MamdaSubscription subscription,
final MamdaOptionChainListener listener,
final MamaMsg msg,
final MamdaOptionSeriesUpdate event,
final MamdaOptionChain chain
)
Parameters:
Reimplemented by: com::wombat::mamda::options::MamdaOptionChainView::onOptionSeriesUpdate
Method invoked upon when a new contract is added to or removed from the option chain, excluding upon receipt of the initial value. This method is typically invoked inly for special events, such as when options are added intraday or when options expire. Note: onOptionContractCreate() is also invoked when an option is added intraday.
Updated on 2023-03-31 at 15:30:37 +0100