A class that represents the call and put contract sets at a given strike price.
Name | |
---|---|
MamdaOptionStrikeSet(DateTime expireDate, double strikePrice) | |
MamdaOptionContractSet | getCallSet() Return a set of call option contracts at a given strike price. |
MamdaOptionContractSet | getPutSet() Return a set of put option contracts at a given strike price. |
DateTime | getExpireDate() Return the expiration date for the contracts at the given strike price. |
string | getExpireDateStr() Return the expiration date as a string for the contracts at the given strike price. |
double | getStrikePrice() Return the strike price. |
MamdaOptionStrikeSet(
DateTime expireDate,
double strikePrice
)
MamdaOptionContractSet getCallSet()
Return a set of call option contracts at a given strike price.
Return: Set of call contracts at the given strike price.
MamdaOptionContractSet getPutSet()
Return a set of put option contracts at a given strike price.
Return: MamdaOptionContractSet Set of put contracts at the given strike price.
DateTime getExpireDate()
Return the expiration date for the contracts at the given strike price.
Return: The expiration date.
string getExpireDateStr()
Return the expiration date as a string for the contracts at the given strike price.
Return: The expiration date.
double getStrikePrice()
Return the strike price.
Return: The strike price.
Updated on 2023-03-31 at 15:30:16 +0100