algoind


Namealgoind JSON
Version 0.0.3 PyPI version JSON
download
home_page
SummaryA collection of technical indicators for backtesting and for implementing trading strategies in Python3.
upload_time2023-10-13 13:38:23
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2023 Matteo Incremona Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords backtesting finance indicator pandas quantitative trading
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <h1 align="center">ALGOIND: A Technical Indicators collection in Python.</h1>

<div align="center">
<img src="https://komarev.com/ghpvc/?username=matteoincremona&label=Profile%20views&color=blueviolet&style=flat" /> </a>
<img src ="https://img.shields.io/badge/pipy-%3E%20v3.7-blue" /> </a>
<img src ="https://img.shields.io/badge/version-0.0.2-green" /> </a>
<img src= "https://raw.githubusercontent.com/matteoincremona/algoind/main/logo.svg">

<div align="left">

# 🔎 What is it

- **algoind** is python3 package that contains technical indicators for backtesting and for implementing trading strategies in Python3.

- ### 😃 Who I am
  - My name is Matteo, a 21 years old FinTech student.
  - I created this library for my personal usage and I decided publish it because it think can be useful for someone.
  - 👋 You can find my [contacts here].

- The source code is currently hosted on GitHub at: https://github.com/matteoincremona/algoind/

- Thanks to [Investopedia.com] that provided me a vast amount of knowledge to be able to create this library.

# 💻 How to Install it
```sh
# conda
conda install -c conda-forge algoind
```

```sh
# PyPI
pip install algoind
```

# 📈 Features 
This is the list of all the indicators **algoind** contains:

  - Single Moving Average (**SMA**)
  - Esponential Moving Average (**EMA**)
  - Average True Range (**ATR**)
  - Relative Strenght Index (**RSI**)
  - Upper Bollinger Bands (**BBU**)
  - Lower Bollinger Bands (**BBL**)
  - Mid Bollinger Bands (**BBM**)
  - Moving Average Convergence Divergence (**MACD**)
  - Moving Average Convergence Divergence Signal (**MACDsignal**)

# ✅ Example: How to use it

```sh
# After the installation of the package:
import algoind
from algoind import indicators as ind

# Let's try SMA: what should we know about it?
help(ind.SMA)

# Let's try SMA that takes, for example:
# - The close prices of a df: "df.Close"
# - The period for the calculation of the SMA: "20"
SMA20 = ind.SMA(df.Close, 20)

# To see the values of the indicator:
SMA20
```
# ⚙️ Discussion and Development
I will be very enthusiastic if somebody would like to help me with this project.

[Contact me] if you have any **problem** or if you want me to add **new indicators**.

Thank you.

[contacts here]: https://github.com/matteoincremona/matteoincremona/
[Investopedia.com]: https://www.investopedia.com
[Contact me]: https://github.com/matteoincremona/matteoincremona/

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "algoind",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "backtesting,finance,indicator,pandas,quantitative,trading",
    "author": "",
    "author_email": "Matteo Incremona <matteoincremona82@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/72/e2/9650c28f0732363d43cd52943e935bef69fc97711e658363cab439944914/algoind-0.0.3.tar.gz",
    "platform": null,
    "description": "<h1 align=\"center\">ALGOIND: A Technical Indicators collection in Python.</h1>\n\n<div align=\"center\">\n<img src=\"https://komarev.com/ghpvc/?username=matteoincremona&label=Profile%20views&color=blueviolet&style=flat\" /> </a>\n<img src =\"https://img.shields.io/badge/pipy-%3E%20v3.7-blue\" /> </a>\n<img src =\"https://img.shields.io/badge/version-0.0.2-green\" /> </a>\n<img src= \"https://raw.githubusercontent.com/matteoincremona/algoind/main/logo.svg\">\n\n<div align=\"left\">\n\n# \ud83d\udd0e What is it\n\n- **algoind** is python3 package that contains technical indicators for backtesting and for implementing trading strategies in Python3.\n\n- ### \ud83d\ude03 Who I am\n  - My name is Matteo, a 21 years old FinTech student.\n  - I created this library for my personal usage and I decided publish it because it think can be useful for someone.\n  - \ud83d\udc4b You can find my [contacts here].\n\n- The source code is currently hosted on GitHub at: https://github.com/matteoincremona/algoind/\n\n- Thanks to [Investopedia.com] that provided me a vast amount of knowledge to be able to create this library.\n\n# \ud83d\udcbb How to Install it\n```sh\n# conda\nconda install -c conda-forge algoind\n```\n\n```sh\n# PyPI\npip install algoind\n```\n\n# \ud83d\udcc8 Features \nThis is the list of all the indicators **algoind** contains:\n\n  - Single Moving Average (**SMA**)\n  - Esponential Moving Average (**EMA**)\n  - Average True Range (**ATR**)\n  - Relative Strenght Index (**RSI**)\n  - Upper Bollinger Bands (**BBU**)\n  - Lower Bollinger Bands (**BBL**)\n  - Mid Bollinger Bands (**BBM**)\n  - Moving Average Convergence Divergence (**MACD**)\n  - Moving Average Convergence Divergence Signal (**MACDsignal**)\n\n# \u2705 Example: How to use it\n\n```sh\n# After the installation of the package:\nimport algoind\nfrom algoind import indicators as ind\n\n# Let's try SMA: what should we know about it?\nhelp(ind.SMA)\n\n# Let's try SMA that takes, for example:\n# - The close prices of a df: \"df.Close\"\n# - The period for the calculation of the SMA: \"20\"\nSMA20 = ind.SMA(df.Close, 20)\n\n# To see the values of the indicator:\nSMA20\n```\n# \u2699\ufe0f Discussion and Development\nI will be very enthusiastic if somebody would like to help me with this project.\n\n[Contact me] if you have any **problem** or if you want me to add **new indicators**.\n\nThank you.\n\n[contacts here]: https://github.com/matteoincremona/matteoincremona/\n[Investopedia.com]: https://www.investopedia.com\n[Contact me]: https://github.com/matteoincremona/matteoincremona/\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2023 Matteo Incremona  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A collection of technical indicators for backtesting and for implementing trading strategies in Python3.",
    "version": "0.0.3",
    "project_urls": {
        "Bug Tracker": "https://github.com/matteoincremona/techind/issues",
        "Homepage": "https://github.com/matteoincremona/techind"
    },
    "split_keywords": [
        "backtesting",
        "finance",
        "indicator",
        "pandas",
        "quantitative",
        "trading"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "03fb953896e97a2a0bbed75dfd964935517f902d40dee2ea2ceb7aacc8152162",
                "md5": "260dc024607192a825a0aa694f1e8104",
                "sha256": "0f902ca66c989e0069de81d51d5a9f32e41bed88fce97fdc75f56bf8fa061fb6"
            },
            "downloads": -1,
            "filename": "algoind-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "260dc024607192a825a0aa694f1e8104",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 5297,
            "upload_time": "2023-10-13T13:38:21",
            "upload_time_iso_8601": "2023-10-13T13:38:21.939475Z",
            "url": "https://files.pythonhosted.org/packages/03/fb/953896e97a2a0bbed75dfd964935517f902d40dee2ea2ceb7aacc8152162/algoind-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "72e29650c28f0732363d43cd52943e935bef69fc97711e658363cab439944914",
                "md5": "eecc48dc2e6c1e05e2c22ff69a0c1854",
                "sha256": "10d5e2c77215e21e83c228df18470b11bb0888a1d9ca14bd9151c77f552a4347"
            },
            "downloads": -1,
            "filename": "algoind-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "eecc48dc2e6c1e05e2c22ff69a0c1854",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6303,
            "upload_time": "2023-10-13T13:38:23",
            "upload_time_iso_8601": "2023-10-13T13:38:23.443230Z",
            "url": "https://files.pythonhosted.org/packages/72/e2/9650c28f0732363d43cd52943e935bef69fc97711e658363cab439944914/algoind-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-13 13:38:23",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "matteoincremona",
    "github_project": "techind",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "algoind"
}
        
Elapsed time: 0.13829s