Skip to main content

ma

Plots MA technical indicator

Source Code: [link]

openbb.ta.ma(data: pd.Series, window: List[int] = None, offset: int = 0, ma_type: str = "EMA", symbol: str = "", export: str = "", external_axes: Optional[List[matplotlib.axes._axes.Axes]] = None)

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
exportstrFormat to export dataTrue
external_axesOptional[List[plt.Axes]]External axes (1 axis is expected in the list), by default NoneNoneTrue

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