demark
- Model
- Chart
Get the integer value for demark sequential indicator
Source Code: [link]
openbb.ta.demark(values: pd.Series)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
values | pd.Series | Series of close values | None | False |
Returns
Type | Description |
---|---|
pd.DataFrame | Dataframe of UP and DOWN sequential indicators |
Examples
from openbb_terminal.sdk import openbb
df = openbb.stocks.load("AAPL")
openbb.ta.demark(df["Close"])
Plot demark sequential indicator
Source Code: [link]
openbb.ta.demark_chart(data: pd.DataFrame, symbol: str = "", min_to_show: int = 5, export: str = "", sheet_name: Optional[str] = "", external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | DataFrame of values | None | False |
symbol | str | Symbol that the data corresponds to | True | |
min_to_show | int | Minimum value to show | 5 | True |
export | str | Format to export data | True | |
external_axes | bool | Whether to return the figure object or not, by default False | False | True |
Returns
This function does not return anything
Examples
from openbb_terminal.sdk import openbb
df = openbb.stocks.load("AAPL")
openbb.ta.demark_chart(df)