cci
- Model
- Chart
Commodity channel index
Source Code: [link]
openbb.ta.cci(data: pd.DataFrame, window: int = 14, scalar: float = 0.0015)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
high_vals | pd.Series | High values | None | True |
low_values | pd.Series | Low values | None | True |
close-values | pd.Series | Close values | None | True |
window | int | Length of window | 14 | True |
scalar | float | Scalar variable | 0.0015 | True |
Returns
Type | Description |
---|---|
pd.DataFrame | Dataframe of technical indicator |
Plots CCI Indicator
Source Code: [link]
openbb.ta.cci_chart(data: pd.DataFrame, window: int = 14, scalar: float = 0.0015, 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 | None | False |
window | int | Length of window | 14 | True |
scalar | float | Scalar variable | 0.0015 | 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