Skip to content

Commit b8bf279

Browse files
committed
Add wma function explanation
1 parent 89566a9 commit b8bf279

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Indicators that help to determine the direction of the market (uptrend, downtren
4646
#### Weighted Moving Average (WMA)
4747

4848
```python
49-
def wma(data: Union[PdDataFrame, PlDataFrame], source_column: str, period: int, result_column: Optional[str] = None) -> Union[PdDataFrame, PlDataFrame]
49+
def wma(data: Union[PandasDataFrame, PolarsDataFrame], source_column: str, period: int, result_column: Optional[str] = None) -> Union[PdDataFrame, PlDataFrame]
5050

5151
```python
5252
from investing_algorithm_framework import CSVOHLCVMarketDataSource

0 commit comments

Comments
 (0)