cg
- Model
- Chart
Center of gravity
Source Code: [link]
openbb.ta.cg(values: pd.Series, window: int)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
values | pd.DataFrame | Data to use with close being titled values | None | False |
window | int | Length for indicator window | None | False |
Returns
Type | Description |
---|---|
pd.DataFrame | Dataframe of technical indicator |
Plots center of gravity Indicator
Source Code: [link]
openbb.ta.cg_chart(data: pd.Series, window: int = 14, symbol: str = "", export: str = "", sheet_name: Optional[str] = None, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.Series | Series of values | None | False |
window | int | Length of window | 14 | True |
symbol | str | Stock ticker | 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