You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# PyIndicators
2
2
3
-
PyIndicators is a powerful and user-friendly Python library for technical analysis indicatorsand metrics. Written entirely in Python, it requires no external dependencies, ensuring seamless integration and ease of use.
3
+
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.
4
4
5
5
## Installation
6
6
@@ -14,12 +14,13 @@ pip install pyindicators
14
14
15
15
* Native Python implementation, no external dependencies needed except for Polars or Pandas
16
16
* Dataframe first approach, with support for both pandas dataframes and polars dataframes
17
+
* Supports python version 3.9 and above.
17
18
*[Trend indicators](#trend-indicators)
18
19
*[Simple Moving Average (SMA)](#simple-moving-average-sma)
19
20
*[Exponential Moving Average (EMA)](#exponential-moving-average-ema)
20
21
*[Momentum indicators](#momentum-indicators)
21
22
*[Relative Strength Index (RSI)](#relative-strength-index-rsi)
22
-
*[Relative Strength Index Wilders method (RSI)](#wilders-relative-strength-index-wilders-rsi)
23
+
*[Relative Strength Index Wilders method (Wilders RSI)](#wilders-relative-strength-index-wilders-rsi)
23
24
*[Indicator helpers](#indicator-helpers)
24
25
*[Crossover](#crossover)
25
26
*[Is Crossover](#is-crossover)
@@ -30,6 +31,10 @@ pip install pyindicators
30
31
31
32
#### Simple Moving Average (SMA)
32
33
34
+
Smooth out price data to identify trend direction.
0 commit comments