Skip to content

Commit 23dfe2a

Browse files
committed
Add description to wma
1 parent b8bf279 commit 23dfe2a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,11 @@ Indicators that help to determine the direction of the market (uptrend, downtren
4545

4646
#### Weighted Moving Average (WMA)
4747

48+
Moving average that gives more weight to recent data points by applying a weighting factor to the data points.
49+
4850
```python
4951
def wma(data: Union[PandasDataFrame, PolarsDataFrame], source_column: str, period: int, result_column: Optional[str] = None) -> Union[PdDataFrame, PlDataFrame]
52+
```
5053

5154
```python
5255
from investing_algorithm_framework import CSVOHLCVMarketDataSource

0 commit comments

Comments
 (0)