sma-rsi-indicators


Namesma-rsi-indicators JSON
Version 0.1.5 PyPI version JSON
download
home_page
SummaryA basic package to calculate sma and rsi indicators
upload_time2024-01-07 18:12:15
maintainer
docs_urlNone
authoryavuzselimvurgun
requires_python
license
keywords python sma rsi csv
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ## '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.


            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "sma-rsi-indicators",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,sma,rsi,csv",
    "author": "yavuzselimvurgun",
    "author_email": "<yavuzselim.vurgun@bahcesehir.edu.tr>",
    "download_url": "https://files.pythonhosted.org/packages/1b/a8/2415a534493ee459810d74f285408c4e3ccf6c8336bace1250bf0d6c84e4/sma_rsi_indicators-0.1.5.tar.gz",
    "platform": null,
    "description": "## '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.'\r\n\r\n### Example Usage:\r\n```Python\r\nimport sma_rsi_indicators\r\n\r\ncsv_path = \"orcl.csv\" # Insert the path to your csv file here\r\nlist_of_data = sma_rsi_indicators.convert_to_dict(csv_path)\r\n\r\nsma_rsi_indicators.calculate_sma(list_of_data,\"orcl-sma.csv\")\r\nsma_rsi_indicators.calculate_rsi(list_of_data,\"orcl-rsi.csv\")\r\n\r\n```\r\n***\r\nYour csv file should contain columns called \"Date\" and \"Close\" indicating the dates and the closing values of those dates for this module to work.\r\n\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "A basic package to calculate sma and rsi indicators",
    "version": "0.1.5",
    "project_urls": null,
    "split_keywords": [
        "python",
        "sma",
        "rsi",
        "csv"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70b0a12af2701b6019950fbfd6569338c702f0ff13f8e82c5f725a5b6d41c588",
                "md5": "2ba94cadd3d88a61f472ff6967bbfc66",
                "sha256": "90ac2bf93f66d912228bd63e2707a8e6eb3f78fcfad93c8419f30fb53eeec1f2"
            },
            "downloads": -1,
            "filename": "sma_rsi_indicators-0.1.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2ba94cadd3d88a61f472ff6967bbfc66",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 3887,
            "upload_time": "2024-01-07T18:12:14",
            "upload_time_iso_8601": "2024-01-07T18:12:14.243721Z",
            "url": "https://files.pythonhosted.org/packages/70/b0/a12af2701b6019950fbfd6569338c702f0ff13f8e82c5f725a5b6d41c588/sma_rsi_indicators-0.1.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1ba82415a534493ee459810d74f285408c4e3ccf6c8336bace1250bf0d6c84e4",
                "md5": "14030924a6ea0b58fca571bb14d69c13",
                "sha256": "d97d06d72afe9914f0e0caf6ccd4f5439f7702d150983a18039db1e29141e96b"
            },
            "downloads": -1,
            "filename": "sma_rsi_indicators-0.1.5.tar.gz",
            "has_sig": false,
            "md5_digest": "14030924a6ea0b58fca571bb14d69c13",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 3337,
            "upload_time": "2024-01-07T18:12:15",
            "upload_time_iso_8601": "2024-01-07T18:12:15.843466Z",
            "url": "https://files.pythonhosted.org/packages/1b/a8/2415a534493ee459810d74f285408c4e3ccf6c8336bace1250bf0d6c84e4/sma_rsi_indicators-0.1.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-07 18:12:15",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "sma-rsi-indicators"
}
        
Elapsed time: 0.16031s