stoch
- Model
- Chart
Stochastic oscillator
Source Code: [link]
openbb.ta.stoch(data: pd.DataFrame, fastkperiod: int = 14, slowdperiod: int = 3, slowkperiod: int = 3)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.DataFrame | Dataframe of OHLC prices | None | False |
fastkperiod | int | Fast k period | 14 | True |
slowdperiod | int | Slow d period | 3 | True |
slowkperiod | int | Slow k period | 3 | True |
Returns
Type | Description |
---|---|
pd.DataFrame | Dataframe of technical indicator |
Plots stochastic oscillator signal
Source Code: [link]
openbb.ta.stoch_chart(data: pd.DataFrame, fastkperiod: int = 14, slowdperiod: int = 3, slowkperiod: int = 3, 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 |
fastkperiod | int | Fast k period | 14 | True |
slowdperiod | int | Slow d period | 3 | True |
slowkperiod | int | Slow k period | 3 | True |
symbol | str | Stock ticker symbol | 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