pallo


Namepallo JSON
Version 0.2.1 PyPI version JSON
download
home_pagehttps://github.com/jf225/pallo
SummarySimplifies the creation and usage of probabilistic asset allocation models
upload_time2023-11-13 19:05:19
maintainer
docs_urlNone
authorJames Fahey
requires_python
licenseMIT
keywords python finance stocks asset allocation probabilities
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# pallo v0.2.1

This is a Python package available on PyPi that simplifies the creation and usage of probabilistic asset allocation models.

**Pallo currently supports:**
 - Geometric Mean Maximization
 - Custom Drawdown constraints
 - Margin Trading Calculation Options
 - Maximizing Sharpe Ratios

# Installation
    pip install pallo

# Usage
In v0.2.1 there are two asset allocation models currently available, a geometric mean maximization model and an efficient frontier model. There are plans for additional options in the future.
```
#Load a custom dataset as a 2d list with each asset's percentage price moves as a one list
#Use the createDataset() method to create a 2d list to use with the gphrModel
stocks = ["SGRY", "AA", "MTX"]
dataset = createDataset(stocks, 30)

#Create a gphrModel object and load the dataset
model = gphrModel(dataset)

#defineBins(), calcGPHRs(), and findBestUnderDrawdown() (need to be executed in that order)
#will compute the best asset allocation based on the inputted specifications. View method parameters below. 
model.defineBins()
model.calcGPHRs()
model.findBestUnderDrawdown(.90, 12, .2)

#Print the best possible asset allocation under the inputted drawdown constraint.
model.showStats()




#Find the best possible Sharpe ratio out of a collection of stocks
allStocks = ["BK", "MTZ", "SGRY", "AA", "ARCB", "RDNT", "MMYT", "DECK", "TEO", "WK"]

#Make a efModel object and input the list of stocks
mod = efModel(allStocks)

#Returns the best possible Sharpe ratio, stocks, and asset allocation
print(mod.findMaxSharpe(30))

```

# Object and Method Details
**gphrModel(dataset):**\
This is the object that will hold all calculations and information related to the inputted dataset.
>Dataset Specifications For Proper Function:
 - Must be a 2d list that holds the percentage price movements of each asset.
 - Each sub-list in the dataset must be of equal length to one another
 - The period (timeframe) referenced in each object of each sublist must be equal in all sublists
 - The dataset has a minimum asset count of 2 and an uncapped maximum

**gphrModel.defineBins(numBins=5):**\
This method will take the dataset you have inputted and create the probabilistic range as well as setup the most of the attributes for computation.
>Parameters:
 - numBins
    - This parameter determines how many probability bins are to be created for the model. This will have a low-moderate impact on the speed of computation and granularity of results.
    - Default: 5
    - Minimum to function: 3
    - No Maximum, however, the more you add the longer the computations will take later.

**gphrModel.calcGPHRs(portfolioLimit=.33):**\
This method will calculate all of the possible combinations of asset allocations within the portfolio limit.
>Parameters:
 - portfolioLimit
   - This is the percentage of the overall portfolio available funds that you will allow to compute. This will have a very high impact on the speed of computation, lower = faster, higher = slower. Consider lowering the input from default if your assets are highly volatile or you are seeking a low risk of hitting your drawdown constraint. Consider raising the input from default if your assets aren't volatile.
   - Default: .33
   - Minimum: .01
   - No Maximum for the method to function properly but to calculate for cash accounts 1.0 would equate to your entire account value. The input should exceed 1.0 for margin accounts.

**gphrModel.findBestUnderDrawdown(drawdownConstraint, periods, percentChance, extraBranches=False):**\
This method will do a pseudo tree traversal to calculate the best asset allocation that has a percent change below percentChance of hitting your drawdown constraint.
>Parameters:
 - drawdownConstraint
   - This will determine your drawdown constraint over the trading period. .90 equates to a 10% decrease on initial capitalization.
   - Minimum: .01
   - Maximum: .99
 - periods
   - This is the number of trading periods you want to calculate for. The timeframe for the period is the same as the timeframe between each percent change in your dataset.
   - Minimum: 1
   - No Maximum but it should be noted that as the periods grow larger the chance of hitting your drawdown will increase so you will find that the percentage of your overall portfolio you can trade will decrease.
   - This has a moderate impact on computation speed.
 - percentChance
   - This determines what percent chance you are willing to have of hitting your drawdown constraint over the trading period.
   - Minimum: .01
   - Maximum: 1.0
   - This has a moderate impact on computation speed.
 - **extraBranches**
   - This should only be set to true after extensive testing as this will **significantly** increase computation time. However, if this is set to true the results will be significantly more accurate and viable for use. With this set to false the results will not be consistent however the computation time is low and testing is more viable.
   - Default: False
     
**createDataset(stockList, timeIncluded):**\
This is a method that will turn a list of stocks into a usable 2d dataset for the gphrModel object.
>Parameters:
 - stockList
   - Input that determines the stocks the dataset is based off
   - Current functionality requires that the stock list length must be 3 exactly
 - Time Included
   - Integer that determines how many days prior to today will be included in the creation of the datset
   - Minimum: 1 (More if previous days were weekend or holiday)
   - Maximum: Uncapped
   
**efModel(stockList):**\
This object will intake a list of stocks and then calculate the best combination of three stocks and weights to produce the highest possible Sharpe ratio out of the inputted stocks.
>Stock List Specifications for Proper Function:
 - Must be List of stock tags as strings
 - Minimum: 2
 - Uncapped Maximum

**efModel.findMaxSharpe(timeIncluded)**
This method will calculate all of the best Sharpe ratios in the list of possible stock combinations and output the best possible Sharpe ratio and the asset allocation that achieves it.
>Parameters:
 - timeIncluded
   - Integer that determines how many days prior to today will be included in the calculation of Sharpe ratios
   - Minimum: 1 (More if previous days were weekend or holiday)
   - Maximum: Uncapped

# Roadmap
>Efficient Frontier Model Additional Customization
 - Add the ability to import custom datasets rather than downloading from yfinance.
 - Return a list of all Sharpe ratios and asset allocations.
 - Allow different numbers of final stock combinations aside from the default 3.
>Expanding Options/Interperiod Methods For gprhModel
 - Will be adding additional methods that adjust asset allocations depending upon ROI between periods.
 - Planning to add saving and recovering methods.
 - Also working towards a multiprocessing solution to reduce computation times.

# Recent Changes
v0.2.1
  - Added the createDataset() method to make it easier to test the gphrModel
    
v0.2.0
  - New efModel is finished with the ability to input any length stock list and find the best possible asset allocation of a combination of three stocks.
  - Cleaned up and updated README.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/jf225/pallo",
    "name": "pallo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,finance,stocks,asset allocation,probabilities",
    "author": "James Fahey",
    "author_email": "<jamesaf36@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/67/0e/00f7075f60349825ba3985715c145afa9770b76bfc9a147c580d9c60d7a5/pallo-0.2.1.tar.gz",
    "platform": null,
    "description": "\n# pallo v0.2.1\n\nThis is a Python package available on PyPi that simplifies the creation and usage of probabilistic asset allocation models.\n\n**Pallo currently supports:**\n - Geometric Mean Maximization\n - Custom Drawdown constraints\n - Margin Trading Calculation Options\n - Maximizing Sharpe Ratios\n\n# Installation\n    pip install pallo\n\n# Usage\nIn v0.2.1 there are two asset allocation models currently available, a geometric mean maximization model and an efficient frontier model. There are plans for additional options in the future.\n```\n#Load a custom dataset as a 2d list with each asset's percentage price moves as a one list\n#Use the createDataset() method to create a 2d list to use with the gphrModel\nstocks = [\"SGRY\", \"AA\", \"MTX\"]\ndataset = createDataset(stocks, 30)\n\n#Create a gphrModel object and load the dataset\nmodel = gphrModel(dataset)\n\n#defineBins(), calcGPHRs(), and findBestUnderDrawdown() (need to be executed in that order)\n#will compute the best asset allocation based on the inputted specifications. View method parameters below. \nmodel.defineBins()\nmodel.calcGPHRs()\nmodel.findBestUnderDrawdown(.90, 12, .2)\n\n#Print the best possible asset allocation under the inputted drawdown constraint.\nmodel.showStats()\n\n\n\n\n#Find the best possible Sharpe ratio out of a collection of stocks\nallStocks = [\"BK\", \"MTZ\", \"SGRY\", \"AA\", \"ARCB\", \"RDNT\", \"MMYT\", \"DECK\", \"TEO\", \"WK\"]\n\n#Make a efModel object and input the list of stocks\nmod = efModel(allStocks)\n\n#Returns the best possible Sharpe ratio, stocks, and asset allocation\nprint(mod.findMaxSharpe(30))\n\n```\n\n# Object and Method Details\n**gphrModel(dataset):**\\\nThis is the object that will hold all calculations and information related to the inputted dataset.\n>Dataset Specifications For Proper Function:\n - Must be a 2d list that holds the percentage price movements of each asset.\n - Each sub-list in the dataset must be of equal length to one another\n - The period (timeframe) referenced in each object of each sublist must be equal in all sublists\n - The dataset has a minimum asset count of 2 and an uncapped maximum\n\n**gphrModel.defineBins(numBins=5):**\\\nThis method will take the dataset you have inputted and create the probabilistic range as well as setup the most of the attributes for computation.\n>Parameters:\n - numBins\n    - This parameter determines how many probability bins are to be created for the model. This will have a low-moderate impact on the speed of computation and granularity of results.\n    - Default: 5\n    - Minimum to function: 3\n    - No Maximum, however, the more you add the longer the computations will take later.\n\n**gphrModel.calcGPHRs(portfolioLimit=.33):**\\\nThis method will calculate all of the possible combinations of asset allocations within the portfolio limit.\n>Parameters:\n - portfolioLimit\n   - This is the percentage of the overall portfolio available funds that you will allow to compute. This will have a very high impact on the speed of computation, lower = faster, higher = slower. Consider lowering the input from default if your assets are highly volatile or you are seeking a low risk of hitting your drawdown constraint. Consider raising the input from default if your assets aren't volatile.\n   - Default: .33\n   - Minimum: .01\n   - No Maximum for the method to function properly but to calculate for cash accounts 1.0 would equate to your entire account value. The input should exceed 1.0 for margin accounts.\n\n**gphrModel.findBestUnderDrawdown(drawdownConstraint, periods, percentChance, extraBranches=False):**\\\nThis method will do a pseudo tree traversal to calculate the best asset allocation that has a percent change below percentChance of hitting your drawdown constraint.\n>Parameters:\n - drawdownConstraint\n   - This will determine your drawdown constraint over the trading period. .90 equates to a 10% decrease on initial capitalization.\n   - Minimum: .01\n   - Maximum: .99\n - periods\n   - This is the number of trading periods you want to calculate for. The timeframe for the period is the same as the timeframe between each percent change in your dataset.\n   - Minimum: 1\n   - No Maximum but it should be noted that as the periods grow larger the chance of hitting your drawdown will increase so you will find that the percentage of your overall portfolio you can trade will decrease.\n   - This has a moderate impact on computation speed.\n - percentChance\n   - This determines what percent chance you are willing to have of hitting your drawdown constraint over the trading period.\n   - Minimum: .01\n   - Maximum: 1.0\n   - This has a moderate impact on computation speed.\n - **extraBranches**\n   - This should only be set to true after extensive testing as this will **significantly** increase computation time. However, if this is set to true the results will be significantly more accurate and viable for use. With this set to false the results will not be consistent however the computation time is low and testing is more viable.\n   - Default: False\n     \n**createDataset(stockList, timeIncluded):**\\\nThis is a method that will turn a list of stocks into a usable 2d dataset for the gphrModel object.\n>Parameters:\n - stockList\n   - Input that determines the stocks the dataset is based off\n   - Current functionality requires that the stock list length must be 3 exactly\n - Time Included\n   - Integer that determines how many days prior to today will be included in the creation of the datset\n   - Minimum: 1 (More if previous days were weekend or holiday)\n   - Maximum: Uncapped\n   \n**efModel(stockList):**\\\nThis object will intake a list of stocks and then calculate the best combination of three stocks and weights to produce the highest possible Sharpe ratio out of the inputted stocks.\n>Stock List Specifications for Proper Function:\n - Must be List of stock tags as strings\n - Minimum: 2\n - Uncapped Maximum\n\n**efModel.findMaxSharpe(timeIncluded)**\nThis method will calculate all of the best Sharpe ratios in the list of possible stock combinations and output the best possible Sharpe ratio and the asset allocation that achieves it.\n>Parameters:\n - timeIncluded\n   - Integer that determines how many days prior to today will be included in the calculation of Sharpe ratios\n   - Minimum: 1 (More if previous days were weekend or holiday)\n   - Maximum: Uncapped\n\n# Roadmap\n>Efficient Frontier Model Additional Customization\n - Add the ability to import custom datasets rather than downloading from yfinance.\n - Return a list of all Sharpe ratios and asset allocations.\n - Allow different numbers of final stock combinations aside from the default 3.\n>Expanding Options/Interperiod Methods For gprhModel\n - Will be adding additional methods that adjust asset allocations depending upon ROI between periods.\n - Planning to add saving and recovering methods.\n - Also working towards a multiprocessing solution to reduce computation times.\n\n# Recent Changes\nv0.2.1\n  - Added the createDataset() method to make it easier to test the gphrModel\n    \nv0.2.0\n  - New efModel is finished with the ability to input any length stock list and find the best possible asset allocation of a combination of three stocks.\n  - Cleaned up and updated README.\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Simplifies the creation and usage of probabilistic asset allocation models",
    "version": "0.2.1",
    "project_urls": {
        "Homepage": "https://github.com/jf225/pallo"
    },
    "split_keywords": [
        "python",
        "finance",
        "stocks",
        "asset allocation",
        "probabilities"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4df03d82df59d72dff8be55dd31a07f0259c434c3e04e8ede3d1d48480443ca8",
                "md5": "0d80788da64cd7a70e5f9313aed94949",
                "sha256": "cc56d663ecfd0c6f1e23f3d85a6a506870d6017194e2f1d6cef7d2d07f29c231"
            },
            "downloads": -1,
            "filename": "pallo-0.2.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0d80788da64cd7a70e5f9313aed94949",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 9052,
            "upload_time": "2023-11-13T19:05:17",
            "upload_time_iso_8601": "2023-11-13T19:05:17.776437Z",
            "url": "https://files.pythonhosted.org/packages/4d/f0/3d82df59d72dff8be55dd31a07f0259c434c3e04e8ede3d1d48480443ca8/pallo-0.2.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "670e00f7075f60349825ba3985715c145afa9770b76bfc9a147c580d9c60d7a5",
                "md5": "6346322f7969c7395337c44a665830fa",
                "sha256": "ae235d9651650e5aa8ded9e911dc052748c3ee682fceffe67071a9462a8948ff"
            },
            "downloads": -1,
            "filename": "pallo-0.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "6346322f7969c7395337c44a665830fa",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 10325,
            "upload_time": "2023-11-13T19:05:19",
            "upload_time_iso_8601": "2023-11-13T19:05:19.491468Z",
            "url": "https://files.pythonhosted.org/packages/67/0e/00f7075f60349825ba3985715c145afa9770b76bfc9a147c580d9c60d7a5/pallo-0.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-13 19:05:19",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "jf225",
    "github_project": "pallo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pallo"
}
        
Elapsed time: 0.14168s