Skip to content

Commit 60796f7

Browse files
committed
Fix image references
1 parent 1c83aaf commit 60796f7

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

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

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

5+
## Installation
6+
7+
PyIndicators can be installed using pip:
8+
9+
```bash
10+
pip install pyindicators
11+
```
12+
513
## Features
614

715
* Native Python implementation, no external dependencies needed except for Polars or Pandas
@@ -11,14 +19,6 @@ PyIndicators is a powerful and user-friendly Python library for technical analys
1119
* [Exponential Moving Average (EMA)](#exponential-moving-average-ema)
1220
* Momentum indicators
1321

14-
## Installation
15-
16-
PyIndicators can be installed using pip:
17-
18-
```bash
19-
pip install pyindicators
20-
```
21-
2222
## Indicators
2323

2424
### Trend Indicators
@@ -46,7 +46,7 @@ pd_df = sma(pd_df, source_column="Close", period=200, result_column="SMA_200")
4646
pd_df.tail(10)
4747
```
4848

49-
![SMA](./static/images/indicators/sma.png)
49+
![SMA](https://github.com/coding-kitties/PyIndicators/blob/main/static/images/indicators/sma.png)
5050

5151
#### Exponential Moving Average (EMA)
5252

@@ -71,7 +71,7 @@ pd_df = ema(pd_df, source_column="Close", period=200, result_column="EMA_200")
7171
pd_df.tail(10)
7272
```
7373

74-
![EMA](./static/images/indicators/ema.png)
74+
![EMA](https://github.com/coding-kitties/PyIndicators/blob/main/static/images/indicators/ema.png)
7575

7676
### Momentum Indicators
7777

0 commit comments

Comments
 (0)