Metadata-Version: 2.1
Name: sma-rsi-indicators
Version: 0.1.5
Summary: A basic package to calculate sma and rsi indicators
Home-page: UNKNOWN
Author: yavuzselimvurgun
Author-email: <yavuzselim.vurgun@bahcesehir.edu.tr>
License: UNKNOWN
Keywords: python,sma,rsi,csv
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## 'A package that allows you to calculate sma and rsi indicators from a given csv file and outputs the indicators to a given csv file.'

### Example Usage:
```Python
import sma_rsi_indicators

csv_path = "orcl.csv" # Insert the path to your csv file here
list_of_data = sma_rsi_indicators.convert_to_dict(csv_path)

sma_rsi_indicators.calculate_sma(list_of_data,"orcl-sma.csv")
sma_rsi_indicators.calculate_rsi(list_of_data,"orcl-rsi.csv")

```
***
Your csv file should contain columns called "Date" and "Close" indicating the dates and the closing values of those dates for this module to work.

