Skip to main content

ma

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

NameTypeDescriptionDefaultOptional
datapd.SeriesSeries of pricesNoneFalse
windowList[int]Length of EMA windowNoneTrue
offsetintOffset variable0True
ma_typestrType of moving average. Either "EMA" "ZLMA" or "SMA"EMATrue
symbolstrTickerTrue
sheet_namestrOptionally specify the name of the sheet the data is exported to.NoneTrue
exportstrFormat to export dataTrue
external_axesboolWhether to return the figure object or not, by default FalseFalseTrue

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])