Metadata-Version: 2.1
Name: rsi-calculator
Version: 0.1.3
Summary: A library to calculating RSI.
Home-page: https://github.com/onuratakan/rsi_calculator
Author: Onur Atakan ULUSOY
Author-email: atadogan06@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >= 3
Description-Content-Type: text/markdown
License-File: LICENSE


# RSI Calculator
A library to calculating RSI.
# Install
```
pip3 install rsi-calculator
```
# Using
## In another script
```python
from rsi_calculator import rsi
# rsi(prices = None, periods = 14)
print(rsi([15, 20, 25, 30, 20, 15, 20, 25, 30, 20, 15, 20, 25, 30, 100]))
```
## In command line
```console
  -h, --help            show this help message and exit
  -pr PRICES [PRICES ...], --prices PRICES [PRICES ...]
                        Prices
  -pe PERIODS, --periods PERIODS
                        Periods
```
```console
rsi -pr 15 20 25 30 20 15 20 25 30 20 15 20 25 30 100
```


