fetch_option_market_data
Retrieves data of specified option.
Syntax
Fields
Description
symbol(str)
OCC symbol of option
def fetch_option_market_data(self, symbol: str) -> Dict[str, Any]:
Returns
Returns a dictionary with the following keys and values:
price
: price of optionask
: ask pricebid
: bid price
Raises
- A
NotImplementedError
is raised if the method is not supported.