summaryrefslogtreecommitdiffstats
path: root/openbb_terminal/stocks/options/chartexchange_model.py
diff options
context:
space:
mode:
Diffstat (limited to 'openbb_terminal/stocks/options/chartexchange_model.py')
-rw-r--r--openbb_terminal/stocks/options/chartexchange_model.py9
1 files changed, 4 insertions, 5 deletions
diff --git a/openbb_terminal/stocks/options/chartexchange_model.py b/openbb_terminal/stocks/options/chartexchange_model.py
index b2ca002a770..962c13e632a 100644
--- a/openbb_terminal/stocks/options/chartexchange_model.py
+++ b/openbb_terminal/stocks/options/chartexchange_model.py
@@ -1,8 +1,7 @@
"""Chartexchange model"""
-from __future__ import annotations
-
import logging
+from typing import Union
import pandas as pd
import requests
@@ -21,7 +20,7 @@ def get_option_history(
symbol: str = "GME",
date: str = "2021-02-05",
call: bool = True,
- price: str | int | float = "90",
+ price: Union[str, Union[int, float]] = "90",
) -> pd.DataFrame:
"""Historic prices for a specific option [chartexchange]
@@ -29,11 +28,11 @@ def get_option_history(
----------
symbol : str
Ticker symbol to get historical data from
- date : str|int|float
+ date : str
Date as a string YYYYMMDD
call : bool
Whether to show a call or a put
- price : str
+ price : Union[str, Union[int, float]]
Strike price for a specific option
Returns