Skip to content

Commit 6ff5db1

Browse files
committed
Add sponsors
1 parent 67d2856 commit 6ff5db1

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
PyIndicators is a powerful and user-friendly Python library for technical analysis indicators, metrics and helper functions. Written entirely in Python, it requires no external dependencies, ensuring seamless integration and ease of use.
44

5+
## Sponsors
6+
7+
<a href="https://www.finterion.com/" target="_blank">
8+
<picture>
9+
<source media="(prefers-color-scheme: dark)" srcset="static/sponsors/finterion-dark.png">
10+
<source media="(prefers-color-scheme: light)" srcset="static/sponsors/finterion-light.png">
11+
<img src="static/sponsors/finterion-light.svg" alt="Finterion Logo" style="height: 70px;">
12+
</picture>
13+
</a>
14+
515
## Installation
616

717
PyIndicators can be installed using pip:

pyindicators/indicators/simple_moving_average.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def sma(
99
source_column: str,
1010
period: int,
1111
result_column: str = None,
12-
):
12+
) -> Union[PdDataFrame, PlDataFrame]:
1313
"""
1414
Function to calculate the simple moving average of a series.
1515

static/sponsors/finterion-dark.png

14.2 KB
Loading

static/sponsors/finterion-light.png

9.3 KB
Loading

0 commit comments

Comments
 (0)