Metadata-Version: 2.1
Name: Stock-Portfolio-Manager
Version: 1.0.1b1
Summary: Portfolio Manager using python, pandas, matplotlib, alpha vantage
Home-page: https://github.com/vinaybhide/portfoliomanager
Author: Vinay Bhide
Author-email: vinaybhide@hotmail.com
License: UNKNOWN
Description: # portfoliomanager
        Pre-requisites for development:
        1. I developed this on Win7 using Python 3.8.2 32-bit on Win 7
        2. Make sure you have PIP (latest version I have used is 3)
            1. Verify by executing: 
                pip --version
            2. If pip isnâ€™t already installed, then first try to bootstrap it from the standard library:
                python -m ensurepip --default-pip
            3. Ensure pip is up to date
                python -m pip install --upgrade pip
        3. install following:
            1. pip install alpha_vantage
            2. pip install pandas
            3. pip install matplotlib
            4. pip install tkcalendar
        4. In addition I have used tkinter module for graphics, which is available as standard library
        5. Before you execute Portfolio Manager
            1 Create a sub-directory 'scriptdata' in the same folder where you copied the source code (.py files)
            2. Get developer key from Alpha Vantage website: https://www.alphavantage.co/support/#support
        6. First use of Portfolio Manager
            1. Use menu 'Help->Add Key & Data Folder' and provide the Alpha Vantage key & path where you want to keep data files
            2. The folder you specify is used to store CSV files retrieved from Alpha Vantage in 'Test' mode of application
        7. General description of Portfolio Manager application using alpha vantage to manage stock portfolio & do research
        v0.4 - Features as below
           1. File->Save current scripts in tree as portfolio  to a file
           2. File->Open existing portfolio file and render data in tree
           3. Manage Portfolio->Add script to tree via menu
           4. Manage Portfolio->Refresh selected script from tree. 
                 This takes current market price and updates the current value for that script
           5. Manage portfolio->Delete selected script from portfolio. 
                 Entire data is deleted from Tree, but the file is not updated
           6. Analyze script->Get Quote. Search script (type first few chars 
                 & enter or click search button). Click Get Quote to get current price.
                 You can select specific indicator to see the performance graph of current script
                 You can use Add script button to add the script in Tree
           7. Analyze Script->Show historical proce series of selected script. Shows close price graph
                 Note: this should be move to right click menu
           8. Analyze Script->Compare Price Vs SMA. Currently shows popup graph
                 Note: 7 & 8 needs to be merged and the graph needs to be shown in main window on
                         right click menu
           9. Help-> Test Mode (On/Off). Toggle the test mode. In Test mode we use file to 
                 load specific script data
           10.Mouse right click->Delete. Deletes the currently selected portfolio entry from tree only.
                 The data is not saved to file
           11. Mouse right click->Modify selected script from tree. You can change the quantity,
                 rate, commission etc. Based on the values the cost of investment will be updated
                 This will also take current market price and update all current value field in Tree
           5. Mouse right click->Performance. Shows current value for total holding, shows other
                 comparison graph and return graph as well
                 Note: this needs to be moved in main window
        v0.5 - Bug fixes and features
           1. Bugfix-get quote was getting called for each row in Open file. Fixed by passing DataFrame from OpenFile to get_stock_quote
           2. Bugfix-in the performance graph the portfolio value is shown from last date of purchase with total holding instead of first date
           3. Bugfix-There was a pandas warning while doing cumulative sum of all the holding. Fixed that using .loc
           5. Correction - moved  Analyze Script->Show historical proce series of selected script to Mouse right click->Daily closing Vs SMA
                 Added 20 day SMA graph in the same plot
           6. Added graphs on right click on selected script. Handling of movement is also taken care.
        v0.6 - Added test data support via downloaded file for all except get_quote_endpoint and search_endpoint
           1. How to use Test data option (ideal for offline demos without Get Quote and Add/Modify functionality)?
              1.1 From Help->Test Mode (On/Off) you can toggle the test mode
              1.2 All the historical data including price & indicator and end point quote is cached in csv files in folder 'ScriptData'
              1.3 The free key of Alpha vantage has limitation of 5 calls per 5 minute/ total 500 calls per day
              1.4 Suggested approach is extract all data once daily.
              1.5 Note the script search in the Get Quote and add script dialog is still ONLINE
              1.6 You can select existing portfolio file to open. You have to make sure that you have the specific script end point quote file
              1.7 Once the portfolio is open all functionality should work fine
         v0.7 - Base version with all graphs and bug fixes and also code identified for mouse move & click on graphs
         v0.8 - Added OHLC Candlestick graph in backtestsma
         v0.9
              1. Added Research graph popup dialog - can be accessed via menu & left click on script graph
              2. Added on mouse move show amount for DailyVsSMA graph. Needs improvement
         v1.0 - All beta features complete
              1. Added consolidated portfolio performance screen
              2. Added Apple stock download to download feature
         v1.0.1 - Added new menu and dialog for entering alpha vantage key and selecting data file folder used in 'Test' mode
              1. All classes using Test mode now accept data file folder in their constructor
              2. TestData class and download data classes are changed to accept folder during runtime
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8.2
Description-Content-Type: text/markdown
