ma
- Model
- Chart
Plots MA technical indicator
Source Code: [link]
openbb.ta.ma(data: pd.Series, window: Optional[List[int]] = None, offset: int = 0, ma_type: str = "EMA", symbol: str = "", export: str = "", sheet_name: Optional[str] = None, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.Series | Series of prices | None | False |
window | List[int] | Length of EMA window | None | True |
offset | int | Offset variable | 0 | True |
ma_type | str | Type of moving average. Either "EMA" "ZLMA" or "SMA" | EMA | True |
symbol | str | Ticker | True | |
sheet_name | str | Optionally specify the name of the sheet the data is exported to. | None | 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.ma_chart(data=df["Adj Close"], symbol="AAPL", ma_type="EMA", window=[20, 50, 100])
from openbb_terminal.sdk import openbb
spuk_index = openbb.economy.index(indices = ["^SPUK"])
openbb.ta.ma_chart(data = spuk_index["^SPUK"], symbol = "S&P UK Index", ma_type = "EMA", window = [20, 50, 100])
Plots MA technical indicator
Source Code: [link]
openbb.ta.ma_chart(data: pd.Series, window: Optional[List[int]] = None, offset: int = 0, ma_type: str = "EMA", symbol: str = "", export: str = "", sheet_name: Optional[str] = None, external_axes: bool = False)
Parameters
Name | Type | Description | Default | Optional |
---|---|---|---|---|
data | pd.Series | Series of prices | None | False |
window | List[int] | Length of EMA window | None | True |
offset | int | Offset variable | 0 | True |
ma_type | str | Type of moving average. Either "EMA" "ZLMA" or "SMA" | EMA | True |
symbol | str | Ticker | True | |
sheet_name | str | Optionally specify the name of the sheet the data is exported to. | None | 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.ma_chart(data=df["Adj Close"], symbol="AAPL", ma_type="EMA", window=[20, 50, 100])
from openbb_terminal.sdk import openbb
spuk_index = openbb.economy.index(indices = ["^SPUK"])
openbb.ta.ma_chart(data = spuk_index["^SPUK"], symbol = "S&P UK Index", ma_type = "EMA", window = [20, 50, 100])