Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
knowledge_base:programming:stockcharting [2023/12/18 21:22] – created Normal User | knowledge_base:programming:stockcharting [2023/12/18 23:05] (current) – [Step 5. More Indicators, Plot Layout] Normal User | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== Step 1. Install Python, VS Code, Setup Python Virtual Environment, | ===== Step 1. Install Python, VS Code, Setup Python Virtual Environment, | ||
+ | ==== Install Python ==== | ||
- | ===== Step 2. Data Extraction | + | The easiest way (and with best shell integration) to install Python is to get it from Microsoft Store. The latest version is Python 3.12 |
+ | ==== Install | ||
- | ===== Step 3. Plot Single Stock Chart ===== | + | VS Code (or Visual Studio Code) is also available in Microsoft Store. VS Code is one of the best IDEs for many programming languages. It manage language specific intelligences via extensions. Please install the following two extensions for better Python programming experience: |
+ | * Python - A Visual Studio Code extension with rich support for the Python language (for all actively supported versions of the language: >=3.7), including features such as IntelliSense (Pylance), linting, debugging, code navigation, code formatting, refactoring, | ||
+ | * Pylance - Fast, feature-rich language support for Python. Pylance is an extension that works alongside Python in Visual Studio Code to provide performant language support. | ||
+ | If not installed, VS Code will prompt you to install these extensions when you start writing your first python code. | ||
- | ===== Step 4. More Indicators, Plot Layout ===== | + | ==== Setup Python Virtual Environment |
+ | Read this online resource: | ||
+ | * https:// | ||
- | ===== Step 5. UI for Taking Multiple Stock Symbols ===== | + | for answers to these questions: |
+ | * How to use Python virtual environment | ||
+ | * Why do you need virtual environment | ||
+ | * What is Python virtual environment | ||
+ | * How does it work | ||
+ | * How to manage virtual environment | ||
+ | You don't need to read all at once. | ||
- | ===== Step 5. Putting All Together ===== | + | ==== A Simple Example ==== |
+ | |||
+ | Run the following simple code (from [[https:// | ||
+ | |||
+ | Notes: You will need to install plotly and pandas Python packages using pip. Reference to [[https:// | ||
+ | |||
+ | < | ||
+ | import plotly.express as px | ||
+ | |||
+ | df = px.data.stocks() | ||
+ | fig = px.line(df, x=' | ||
+ | fig.show() | ||
+ | </ | ||
+ | |||
+ | ===== Step 2. Learning to Use Git ===== | ||
+ | |||
+ | Watch this [[https:// | ||
+ | |||
+ | Note: Create a '' | ||
+ | |||
+ | ===== Step 3. Data Extraction from Yahoo Finance ===== | ||
+ | |||
+ | Try out the following simple example - getting Amazon stock price data by reading [[https:// | ||
+ | |||
+ | < | ||
+ | # IMPORT THE LIBRARY | ||
+ | import yfinance as yf | ||
+ | from datetime import datetime | ||
+ | |||
+ | # CREATE TICKER INSTANCE FOR AMAZON | ||
+ | amzn = yf.Ticker(" | ||
+ | |||
+ | # GET TODAYS DATE AND CONVERT IT TO A STRING WITH YYYY-MM-DD FORMAT (YFINANCE EXPECTS THAT FORMAT) | ||
+ | end_date = datetime.now().strftime(' | ||
+ | amzn_hist = amzn.history(start=' | ||
+ | print(amzn_hist) | ||
+ | </ | ||
+ | ===== Step 4. Plot Single Stock Chart ===== | ||
+ | |||
+ | Combining Step 2 and Step 3 to plot Amazon stock price and volume over the past two years. | ||
+ | ===== Step 5. More Indicators, Plot Layout ===== | ||
+ | |||
+ | * 50 day moving average | ||
+ | * 200 day moving average | ||
+ | * Bollinger bands | ||
+ | ===== Step 6. UI for Taking Multiple Stock Symbols ===== | ||
+ | |||
+ | |||
+ | ===== Step 7. Putting All Together ===== | ||