scrilla


Namescrilla JSON
Version 1.6.0 PyPI version JSON
download
home_page
Summarya financial optimization program
upload_time2023-07-31 13:41:25
maintainer
docs_urlNone
authorGrant Moore
requires_python>=3.8
licenseGNU GPL v3
keywords finance statistics stock market equities cryptocurrencies optimization
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            # scrilla: A Financial Optimization Application

_scrilla_ is an open-source financial analysis application written in **Python**. It can optimize portfolios, calculate statistics using a variety of methods and algorithms, generate graphical plots and much more. It uses historical data retrieved from various sources, such as the US Treasury RSS Feed, AlphaVantage, IEX and Quandl, to calibrate models. 

**NOTE**: None of the results of _scrilla_ should be interpretted as financial advice. All results assume past trends will continue indefinitely into the future, which is usually never the case in reality.

![](https://github.com/chinchalinchin/chinchalinchin/blob/main/assets/scrilla_gui_ii.png)


Documentation
---
- [Overview](https://chinchalinchin.github.io/scrilla/)
- [Packages](https://chinchalinchin.github.io/scrilla/package/index.html)

Coverage
---
- [Unit Tests](https://chinchalinchin.github.io/scrilla/coverage/index.html)

Code Analysis
---
[![DeepSource](https://deepsource.io/gh/chinchalinchin/scrilla.svg/?label=active+issues&show_trend=true&token=tD25pyXAL4uIvrccqjlwzXIU)](https://deepsource.io/gh/chinchalinchin/scrilla/?ref=repository-badge)<br/>
[![DeepSource](https://deepsource.io/gh/chinchalinchin/scrilla.svg/?label=resolved+issues&show_trend=true&token=tD25pyXAL4uIvrccqjlwzXIU)](https://deepsource.io/gh/chinchalinchin/scrilla/?ref=repository-badge)<br/>

Pipelines
---
| Branch | Status |
| ------ | ------ |
| pypi/micro-update | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fmicro-update.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fmicro-update) |
| pypi/micro-update | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fminor-update.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fminor-update) |
| develop/main | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/develop%2Fmain.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/develop%2Fmain)| 


## Quick Start

Refer to the [documentation](https://chinchalinchin.github.io/scrilla/) for more detailed information on installation and usage.

## Installation

### PyPi Distribution

Install the package with the <b>Python</b> package manager,

```shell
pip install scrilla
``` 

This will install a command line interface on your path under the name `scrilla`. Confirm your installation with with the `version` command,

```shell
scrilla version
```

You may need to add your Python scripts _/bin/_ to the $PATH if this command is not found. 

To keep the installation as minimal as possible, the base package does not include the GUI libraries. You can install the optional GUI dependency ([PySide6](https://pypi.org/project/PySide6/)) with,

```shell
pip install scrilla[gui]
```

Note, the GUI has a different CLI entrypoint, namely,

```shell
scrilla-gui
```

### Source

If you are developing, you can build from source. `git clone` the [repository](https://github.com/chinchalinchin/scrilla) and then from the root directory install the project dependencies and build the library,

```shell
pip3 install -r requirements.txt
python3 -m build
```

`cd` into the generated <i>/dist/</i>  to manually install the packaged code,

```
pip install scrilla-<major>.<minor>.<micro>-py3-none-any.whl
```

## Configuration

In order to use this application, you will need to register for API keys with [AlphaVantage](https://www.alphavantage.co), [IEX](https://iexcloud.io/) and [Quandl/Nasdaq](https://www.quandl.com/). The program will need to be made aware of these keys somehow. The best option is storing these credentials in environment variables. You can add the following lines to your <i>.bashrc</i> profile or corresponding configuration file for whatever shell you are using,

```shell
export ALPHA_VANTAGE_KEY=<key goes here>
export QUANDL_KEY=<key goes here>
export IEX_KEY=<key goes here>
```

You can also invoke the CLI function `store` to store the credentials in the local installation <i>/data/common/</i> directory. To do so,

```shell
scrilla store -key <key> -value <value>
```

where `<key>` is one of the values: **ALPHA_VANTAGE_KEY**, **QUANDL_KEY** or **IEX_KEY**. `<value>` is the corresponding key itself given to you after registration. Obviously, `<value>` is case-sensitive

Keep in mind if using this method to store the API keys, the keys will be stored unencrypted in the local installation's <i>/data/common/</i> directory. The recommended method is storing the credentials in the environment. 

If no API keys are found through either of these methods, the application will raise an exception.

**NOTE**: The **Quandl**/**Nasdaq** key is technically no required for the majority of the application to function, as interest rates are now retrieved directly from the **US Treasury** RSS feed. However, it is still recommended that you register for an API key, as **Quandl**/**Nasdaq** is still the only source of economic statistics, like GDP or inflation rates. 

### Environment File

A sample environment file has been included in _/env/.sample.env_. To configure the application environment, copy this file into a new environment, adjust the values and load it into your session,

```shell
cp ./env/.sample.env ./env/.env
# adjust .env values
source ./env/.env
# the values loaded into your session will now configure scrilla's execution environment
scrilla risk-profile GD LMT 
```
## Usage

### Portfolio Optimization

The following command will optimize a portfolio of consisting of *ALLY*, *BX*, *GLD*, *BTC* and *ETH* over the specified date range and save the result to a JSON file,

```shell
scrilla optimize-portfolio ALLY BX GLD BTC ETH \
    -start <YYYY-MM-DD> \
    -end <YYYY-MM-DD> \
    -save <absolute path to json file> 
```

### Efficient Frontier

The following command will calculaate the efficient frontier for a portfolio consisting of *SPY*, *GLD* and *USO* over the specified date range and save the result to a JSON file,

```shell
scrilla efficient-frontier SPY GLD USO \
    --start <YYYY-MM-DD> \
    --end <YYYY-MM-DD> \
    --save <absolute path to json file>
```

The following command will generate a plot of this frontier in the return-volatility plane,

```shell
scrilla plot-ef SPY GLD USO \
    --start <YYYY-MM-DD> \ 
    --end <YYYY-MM-DD> 
```

_scrilla_ has lots of other functions. See [usage](https://chinchalinchin.github.io/scrilla/USAGE.html) for more information.


## Cloud

TODO

currently working on a DynamoDB-based cache and Dockerfiles for lambda functions wrapped around scrilla's main features. will update this section once everything is completed.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "scrilla",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "finance,statistics,stock market,equities,cryptocurrencies,optimization",
    "author": "Grant Moore",
    "author_email": "chinchalinchin@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/0c/ed/68d5e24a9255a555e4f2dca73d1ef35c8260a5528b5e304276fd402eb0d6/scrilla-1.6.0.tar.gz",
    "platform": "any",
    "description": "# scrilla: A Financial Optimization Application\n\n_scrilla_ is an open-source financial analysis application written in **Python**. It can optimize portfolios, calculate statistics using a variety of methods and algorithms, generate graphical plots and much more. It uses historical data retrieved from various sources, such as the US Treasury RSS Feed, AlphaVantage, IEX and Quandl, to calibrate models. \n\n**NOTE**: None of the results of _scrilla_ should be interpretted as financial advice. All results assume past trends will continue indefinitely into the future, which is usually never the case in reality.\n\n![](https://github.com/chinchalinchin/chinchalinchin/blob/main/assets/scrilla_gui_ii.png)\n\n\nDocumentation\n---\n- [Overview](https://chinchalinchin.github.io/scrilla/)\n- [Packages](https://chinchalinchin.github.io/scrilla/package/index.html)\n\nCoverage\n---\n- [Unit Tests](https://chinchalinchin.github.io/scrilla/coverage/index.html)\n\nCode Analysis\n---\n[![DeepSource](https://deepsource.io/gh/chinchalinchin/scrilla.svg/?label=active+issues&show_trend=true&token=tD25pyXAL4uIvrccqjlwzXIU)](https://deepsource.io/gh/chinchalinchin/scrilla/?ref=repository-badge)<br/>\n[![DeepSource](https://deepsource.io/gh/chinchalinchin/scrilla.svg/?label=resolved+issues&show_trend=true&token=tD25pyXAL4uIvrccqjlwzXIU)](https://deepsource.io/gh/chinchalinchin/scrilla/?ref=repository-badge)<br/>\n\nPipelines\n---\n| Branch | Status |\n| ------ | ------ |\n| pypi/micro-update | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fmicro-update.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fmicro-update) |\n| pypi/micro-update | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fminor-update.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/pypi%2Fminor-update) |\n| develop/main | [![CircleCI](https://circleci.com/gh/chinchalinchin/scrilla/tree/develop%2Fmain.svg?style=svg)](https://circleci.com/gh/chinchalinchin/scrilla/tree/develop%2Fmain)| \n\n\n## Quick Start\n\nRefer to the [documentation](https://chinchalinchin.github.io/scrilla/) for more detailed information on installation and usage.\n\n## Installation\n\n### PyPi Distribution\n\nInstall the package with the <b>Python</b> package manager,\n\n```shell\npip install scrilla\n``` \n\nThis will install a command line interface on your path under the name `scrilla`. Confirm your installation with with the `version` command,\n\n```shell\nscrilla version\n```\n\nYou may need to add your Python scripts _/bin/_ to the $PATH if this command is not found. \n\nTo keep the installation as minimal as possible, the base package does not include the GUI libraries. You can install the optional GUI dependency ([PySide6](https://pypi.org/project/PySide6/)) with,\n\n```shell\npip install scrilla[gui]\n```\n\nNote, the GUI has a different CLI entrypoint, namely,\n\n```shell\nscrilla-gui\n```\n\n### Source\n\nIf you are developing, you can build from source. `git clone` the [repository](https://github.com/chinchalinchin/scrilla) and then from the root directory install the project dependencies and build the library,\n\n```shell\npip3 install -r requirements.txt\npython3 -m build\n```\n\n`cd` into the generated <i>/dist/</i>  to manually install the packaged code,\n\n```\npip install scrilla-<major>.<minor>.<micro>-py3-none-any.whl\n```\n\n## Configuration\n\nIn order to use this application, you will need to register for API keys with [AlphaVantage](https://www.alphavantage.co), [IEX](https://iexcloud.io/) and [Quandl/Nasdaq](https://www.quandl.com/). The program will need to be made aware of these keys somehow. The best option is storing these credentials in environment variables. You can add the following lines to your <i>.bashrc</i> profile or corresponding configuration file for whatever shell you are using,\n\n```shell\nexport ALPHA_VANTAGE_KEY=<key goes here>\nexport QUANDL_KEY=<key goes here>\nexport IEX_KEY=<key goes here>\n```\n\nYou can also invoke the CLI function `store` to store the credentials in the local installation <i>/data/common/</i> directory. To do so,\n\n```shell\nscrilla store -key <key> -value <value>\n```\n\nwhere `<key>` is one of the values: **ALPHA_VANTAGE_KEY**, **QUANDL_KEY** or **IEX_KEY**. `<value>` is the corresponding key itself given to you after registration. Obviously, `<value>` is case-sensitive\n\nKeep in mind if using this method to store the API keys, the keys will be stored unencrypted in the local installation's <i>/data/common/</i> directory. The recommended method is storing the credentials in the environment. \n\nIf no API keys are found through either of these methods, the application will raise an exception.\n\n**NOTE**: The **Quandl**/**Nasdaq** key is technically no required for the majority of the application to function, as interest rates are now retrieved directly from the **US Treasury** RSS feed. However, it is still recommended that you register for an API key, as **Quandl**/**Nasdaq** is still the only source of economic statistics, like GDP or inflation rates. \n\n### Environment File\n\nA sample environment file has been included in _/env/.sample.env_. To configure the application environment, copy this file into a new environment, adjust the values and load it into your session,\n\n```shell\ncp ./env/.sample.env ./env/.env\n# adjust .env values\nsource ./env/.env\n# the values loaded into your session will now configure scrilla's execution environment\nscrilla risk-profile GD LMT \n```\n## Usage\n\n### Portfolio Optimization\n\nThe following command will optimize a portfolio of consisting of *ALLY*, *BX*, *GLD*, *BTC* and *ETH* over the specified date range and save the result to a JSON file,\n\n```shell\nscrilla optimize-portfolio ALLY BX GLD BTC ETH \\\n    -start <YYYY-MM-DD> \\\n    -end <YYYY-MM-DD> \\\n    -save <absolute path to json file> \n```\n\n### Efficient Frontier\n\nThe following command will calculaate the efficient frontier for a portfolio consisting of *SPY*, *GLD* and *USO* over the specified date range and save the result to a JSON file,\n\n```shell\nscrilla efficient-frontier SPY GLD USO \\\n    --start <YYYY-MM-DD> \\\n    --end <YYYY-MM-DD> \\\n    --save <absolute path to json file>\n```\n\nThe following command will generate a plot of this frontier in the return-volatility plane,\n\n```shell\nscrilla plot-ef SPY GLD USO \\\n    --start <YYYY-MM-DD> \\ \n    --end <YYYY-MM-DD> \n```\n\n_scrilla_ has lots of other functions. See [usage](https://chinchalinchin.github.io/scrilla/USAGE.html) for more information.\n\n\n## Cloud\n\nTODO\n\ncurrently working on a DynamoDB-based cache and Dockerfiles for lambda functions wrapped around scrilla's main features. will update this section once everything is completed.\n",
    "bugtrack_url": null,
    "license": "GNU GPL v3",
    "summary": "a financial optimization program",
    "version": "1.6.0",
    "project_urls": {
        "Documentation": "https://chinchalinchin.github.io/scrilla/",
        "Source": "https://github.com/chinchalinchin/scrilla"
    },
    "split_keywords": [
        "finance",
        "statistics",
        "stock market",
        "equities",
        "cryptocurrencies",
        "optimization"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cb2a27074a986806ff8f8f90dd3306c032680055f36134876b6705035e47d4aa",
                "md5": "fd5911be9e6284a969f21ec695b2819f",
                "sha256": "b5d06d1cbed708800e6f49da7a2ec86a10d5f271d99a5800e957a1fd9eab5af2"
            },
            "downloads": -1,
            "filename": "scrilla-1.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "fd5911be9e6284a969f21ec695b2819f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 165502,
            "upload_time": "2023-07-31T13:41:24",
            "upload_time_iso_8601": "2023-07-31T13:41:24.049371Z",
            "url": "https://files.pythonhosted.org/packages/cb/2a/27074a986806ff8f8f90dd3306c032680055f36134876b6705035e47d4aa/scrilla-1.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0ced68d5e24a9255a555e4f2dca73d1ef35c8260a5528b5e304276fd402eb0d6",
                "md5": "4bf775c81d66759cba2e5c6bfd57f84c",
                "sha256": "2b1dd498a394b13afc5c3717776572668a287db25ddebbb316819f6511d10018"
            },
            "downloads": -1,
            "filename": "scrilla-1.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4bf775c81d66759cba2e5c6bfd57f84c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 140790,
            "upload_time": "2023-07-31T13:41:25",
            "upload_time_iso_8601": "2023-07-31T13:41:25.328091Z",
            "url": "https://files.pythonhosted.org/packages/0c/ed/68d5e24a9255a555e4f2dca73d1ef35c8260a5528b5e304276fd402eb0d6/scrilla-1.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-31 13:41:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "chinchalinchin",
    "github_project": "scrilla",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "circle": true,
    "requirements": [],
    "lcname": "scrilla"
}
        
Elapsed time: 0.09295s