ad
- Model
- Chart
Calculate AD technical indicator
Source Code: [link]
openbb.ta.ad(data: pd.DataFrame, use_open: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | Dataframe of prices with OHLC and Volume | None | False |
use_open | bool | Whether to use open prices | False | True |
Returns
Type | Description |
---|---|
pd.DataFrame | Dataframe with technical indicator |
Plots AD technical indicator
Source Code: [link]
openbb.ta.ad_chart(data: pd.DataFrame, use_open: bool = False, symbol: str = "", export: str = "", sheet_name: Optional[str] = None, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | Dataframe of ohlc prices | None | False |
use_open | bool | Whether to use open prices in calculation | False | True |
symbol | str | Ticker symbol | True | |
sheet_name | str | Optionally specify the name of the sheet the data is exported to. | None | True |
export | str | Format to export data as | True | |
external_axes | bool | Whether to return the figure object or not, by default False | False | True |
Returns
This function does not return anything