Skip to content

This program provides an automated system for managing and recommending stock investments.

License

Notifications You must be signed in to change notification settings

ray-singh/Stock-Recommendation-System

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stock-Recommendation-System

This program provides an automated system for managing and recommending stock investments. It allows users to input stock data and their investment preferences, such as desired P/E ratio and dividend yield thresholds. The program then organizes the stock data efficiently and uses it to analyze and suggest stocks that meet the user's criteria for buying or selling. This enhances the user's ability to make informed decisions about their stock investments, saving time and improving accuracy in the selection process.

This program was created as a learning activity for my data structures and algorithm class. It is supported by my implementation of a Binary Search Tree (BST), AVL Tree, and their corresponding insertion, deletion, traversal, etc algorithms. Stocks are stored in a self-balancing AVL tree, ensuring that stock information is always quickly accessible. The tree maintains balance, allowing for efficient insertion, deletion, and retrieval operations. Users can add new stocks to the AVL tree or remove existing ones, mimicking stock listings and delistings in a real stock exchange.

Classes

Node

This class represents a node in a binary tree (BST or AVL tree). It contains:

  • value: The value held by the node.
  • parent, left, right: References to the parent, left child, and right child nodes.
  • height: The height of the node in the tree.

BinarySearchTree

This class implements a basic Binary Search Tree (BST) Mthods:

  • height(root): Calculates the height of the tree/subtree rooted at root.
  • insert(root, val): Inserts a value into the BST.
  • remove(root, val): Removes a value from the BST.
  • max_value(node): Finds the node with the maximum value in the subtree rooted at node.
  • search(root, val): Searches for a value in the BST.

AVLTree

This class extends the functionality of a BST to create an AVL Tree, which is a self-balancing binary search tree. Methods::

  • height(root): Calculates the height of the tree/subtree rooted at root.
  • left_rotate(root): Performs a left rotation on the subtree rooted at root.
  • right_rotate(root): Performs a right rotation on the subtree rooted at root.
  • balance_factor(root): Calculates the balance factor of the node root.
  • rebalance(root): Rebalances the subtree rooted at root if necessary.
  • insert(root, val): Inserts a value into the AVL Tree.
  • remove(root, val): Removes a value from the AVL Tree.
  • min(root), max(root): Find the minimum and maximum values in the subtree rooted at root.
  • search(root, val): Searches for a value in the AVL Tree.
  • inorder(root), preorder(root), postorder(root), levelorder(root): Generator methods for traversing the tree.

Stock

This class represents a stock with various attributes:

  • name: Name of the stock.
  • price: Selling price of stock.
  • pe: Price to earnings ratio of the stock.
  • mkt_cap: Market capacity.
  • div_yield: Dividend yield for the stock.

User

This class represents a user with preferences for stock recommendations. A user can be a both buyer or seller. Attributes:

  • name: User's name.
  • pe_ratio_threshold: User's threshold for desired P/E ratio.
  • div_yield_threshold: User's threshold for dividend yield.

Functions

make_stock_from_dictionary(stock_dictionary)

Builds an AVL tree with the given stock dictionary. Parameter:

  • stock_dictionary: Dictionary of stock information used to create a new Stock object and define its attributes.

build_tree_with_stocks(stocks_list: List[dict[str: str]])

Builds an AVL tree with the given list of stocks, where each node is a Stock object. Parameter:

  • tocks_list: List of stocks to be inserted into the AVL tree

recommend_stock(stock_tree: AVLTree, user: User, action: str)

Recommends a stock for either buying or selling based on a user's specified thresholds and preferences. This function simplifies the decision-making process for users by automatically filtering stocks based on their specific buying or selling preferences. For each stock, it calculates a score that combines its dividend yield and price-to-earnings ratio (PE ratio). If the user wants to buy (action == 'buy'), it looks for stocks with a low PE ratio and high dividend yield. It picks the stock with the best score (highest score). If the user wants to sell (action == 'sell'), it looks for stocks with a high PE ratio or low dividend yield. It picks the stock with the best score (lowest score). It suggests the stock that best matches the user's criteria based on whether they want to buy or sell. If no stock meets the criteria, it doesn't recommend any stock.

Parameters:

  • stock_tree (AVL Tree): AVL tree containing stock nodes.
  • user (User): A user object representing the investor's preferences.
  • action (str): A string indicating the desired action, either 'buy' or 'sell'.

prune(stock_tree: AVLTree, threshold: float)

This function removes subtrees of the given Stock AVL Tree where all P/E Ration values are less than threshold. Parameters:

  • stock_tree (AVL_Tree): The AVL Tree to be pruned
  • threshold (float): Any subtree with all pe values less than this gets removed.

Usage

This program requires Python to be installed. After installation, you can import the classes and function defined in solution.py into another Python files. To use this program, you must first defined a dictionary (or a list of dictionaries) with relevant stock information. Eg:

stocks_data = [
            {"ticker": "AAPL", "name": "Apple Inc.", "price": 150.50, "pe_ratio": 0.253,
             "market_cap": 2000000000000, "div_yield": 1.5},
            {"ticker": "GOOGL", "name": "Alphabet Inc.", "price": 2800.00, "pe_ratio": 0.307,
             "market_cap": 1800000000000, "div_yield": 0.8},
            {"ticker": "MSFT", "name": "Microsoft Corporation", "price": 320.75, "pe_ratio": 0.285,
             "market_cap": 2200000000000, "div_yield": 1.2},
            {"ticker": "INTC", "name": "Intel Corporation", "price": 50.25, "pe_ratio": 0.158,
             "market_cap": 1500000000000, "div_yield": 2.0},
            {"ticker": "CSCO", "name": "Cisco Systems Inc.", "price": 55.50, "pe_ratio": 0.202,
             "market_cap": 1600000000000, "div_yield": 1.8},
            {"ticker": "ORCL", "name": "Oracle Corporation", "price": 85.75, "pe_ratio": 0.183,
             "market_cap": 1900000000000, "div_yield": 1.0},
            {"ticker": "IBM", "name": "International Business Machines Corporation", "price": 120.00,
             "pe_ratio": 0.146, "market_cap": 1200000000000, "div_yield": 2.5},
            {"ticker": "HPQ", "name": "HP Inc.", "price": 30.50, "pe_ratio": 0.127, "market_cap": 800000000000,
             "div_yield": 3.0},
            {"ticker": "DELL", "name": "Dell Technologies Inc.", "price": 70.00, "pe_ratio": 0.221,
             "market_cap": 1000000000000, "div_yield": 1.5},
            {"ticker": "AMD", "name": "Advanced Micro Devices Inc.", "price": 120.25, "pe_ratio": 0.356,
             "market_cap": 900000000000, "div_yield": 0.7},
        ]

You can use this dictionary to build an AVL Tree with the build_tree_with_stocks() function.

        stock_tree = build_tree_with_stocks(stocks_data)

Next, create instances of the User class, and add in your desired P/E ration threshold and dividend yield threshold.

        user_buy = User(name="First Last", pe_ratio_threshold=0.15, div_yield_threshold=1.5)
        user_sell = User(name="Hello Goodbye", pe_ratio_threshold=25, div_yield_threshold=2.5)

After we have defined users and a AVL Tree to organize the provided stock data, we can use the recommend_stock() function. The action parameter must either 'buy' or 'sell'. If a match is found, the function will return the best stock option's ticker. If not a single stock matches the user's criteria, nothing will be returned.

        best_stock = recommend_stock(stock, user_buy, "buy")
        best_stock = recommend_stock(stock, user_sell, "sell")

About

This program provides an automated system for managing and recommending stock investments.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages