Skip to content

Commit 5ca9fb1

Browse files
committed
add wma return type
1 parent 23dfe2a commit 5ca9fb1

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
@@ -48,7 +48,7 @@ Indicators that help to determine the direction of the market (uptrend, downtren
4848
Moving average that gives more weight to recent data points by applying a weighting factor to the data points.
4949

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

5454
```python

0 commit comments

Comments
 (0)