Portfolio Tracker Utility (USES yfinance API)
This utility uses the yfinance API to fetch current prices automatically. All other calculations and data are managed locally for learning and experimentation.
This utility helps you track your stock or crypto portfolio, including holdings, P&L, and allocation. Current prices are fetched automatically using Yahoo Finance (via yfinance), so you don't have to enter them manually. All data is managed locally for privacy and educational purposes.
Features
- Add, edit, and remove holdings (stocks, crypto, or any asset with a Yahoo Finance ticker)
- Track quantity, average cost, and current price (fetched automatically)
- Calculate total portfolio value, P&L, and allocation percentages
- Save and load your portfolio from a local file (JSON)
- Simple CLI interface (Python script)
- Beginner-friendly: All code is commented for learning
Requirements
- Python 3.7+
- Install required package:
Setup
- Copy
portfolio_tracker.pyto your desired folder. - (Optional) Prepare a JSON file with your initial holdings, or start from scratch.
Usage Workflow (Step-by-Step)
- Run the script:
- Follow the menu prompts:
- Add a new holding (enter ticker, quantity, average cost)
- Edit or remove holdings
- View portfolio summary (value, P&L, allocation)
- Save/load portfolio to/from file
- Exit when done.
Example tickers:
- Stocks: AAPL, TSLA, MSFT
- Crypto: BTC-USD, ETH-USD
Note: This tool fetches prices using the yfinance API. You need an internet connection for price updates.
Example Session
====================================
Welcome to the Portfolio Tracker!
This tool helps you learn Python and finance by tracking your investments.
- Add stocks or crypto by ticker (e.g., AAPL, BTC-USD)
- Prices are fetched automatically from Yahoo Finance
- All code is commented for beginners
====================================
Portfolio Tracker Menu:
1. Add holding
2. Edit holding
3. Remove holding
4. View summary
5. Save portfolio
6. Load portfolio
7. Exit
Enter your choice: 1
Enter asset ticker (e.g., AAPL, BTC-USD): AAPL
Enter quantity: 10
Enter average cost: 150
Holding added!
Learning Notes
- How does it fetch prices? Uses the
yfinancepackage to get the latest close price for any ticker. - How is the code structured? Each function is commented to explain its purpose. The
Holdingclass models each asset. - How can you extend it? Try adding new features, like tracking dividends or plotting your portfolio value over time!
License
MIT