candle
Show candle plot of loaded ticker.
Source Code: [link]
openbb.etf.candle(symbol: str, data: Optional[pd.DataFrame] = None, add_trend: bool = False, ma: Optional[Iterable[int]] = None, asset_type: str = "", start_date: Union[datetime.datetime, str, NoneType] = None, interval: int = 1440, end_date: Union[datetime.datetime, str, NoneType] = None, prepost: bool = False, source: str = "YahooFinance", weekly: bool = False, monthly: bool = False, ha: Optional[bool] = False, external_axes: bool = False, raw: bool = False, yscale: str = "linear")
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
symbol | str | Ticker name | None | False |
data | pd.DataFrame | Stock dataframe | None | True |
add_trend | bool | Flag to add high and low trends to chart | False | True |
ma | Tuple[int] | Moving averages to add to the candle | None | True |
asset_type | str | String to include in title | True | |
start_date | str or datetime | Start date to get data from with. - datetime or string format (YYYY-MM-DD) | None | True |
interval | int | Interval (in minutes) to get data 1, 5, 15, 30, 60 or 1440 | 1440 | True |
end_date | str or datetime | End date to get data from with. - datetime or string format (YYYY-MM-DD) | None | True |
prepost | bool | Pre and After hours data | False | True |
source | str | Source of data extracted | YahooFinance | True |
weekly | bool | Flag to get weekly data | False | True |
monthly | bool | Flag to get monthly data | False | True |
ha | bool | Flag to show Heikin Ashi candles. | False | True |
external_axes | bool | Whether to return the figure object or not, by default False | False | True |
raw | bool | Flag to display raw data, by default False | False | True |
yscale | str | Linear or log for yscale | linear | True |
Returns
This function does not return anything
Examples
from openbb_terminal.sdk import openbb
openbb.stocks.candle("AAPL")