wma
Calculate the Weighted Moving Average (WMA).
A Weighted Moving Average puts more weight on recent data and less on past data. This is done by multiplying each bar's price by a weighting factor. Because of its unique calculation, WMA will follow prices more closely than a corresponding Simple Moving Average.
Parameters
- standard
data
: list[openbb_core.provider.abstract.data.Data]
The data to use for the calculation.
• Optional: False
target
: str
Target column name.
• Default: close
• Optional: True
index
: str
Index column name to use with data
, by default 'date'.
• Default: date
• Optional: True
length
: int
The length of the WMA, by default 50.
• Default: 50
• Optional: True
offset
: int
The offset of the WMA, by default 0.
• Optional: True
Returns
results
: list[Data]
Serializable results.
provider
: None
Provider name.
warnings
: Optional[list[Warning_]]
list of warnings.
chart
: Optional[Chart]
Chart object.
extra
: dict[str, Any]
Extra info.