Skip to content

jaky1206/stock-charts-demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stock Charts Demo

This project provides a demo for generating Stock charts.

Table of Contents

Project Overview

Charts used

  • Renko
  • Candlestick
  • Scatter Plot

Installation

Using Conda

To get started with this project using Conda, follow the steps below:

  • Create a new environment:
    conda create -n stock-charts-demo
  • Activate the environment:
    conda activate stock-charts-demo
  • Install the required dependencies: After activating the environment, you can install the required packages:
    conda env create -f requirements.yml
  • Export your environment configuration: If you need to share or replicate your environment, you can export it:
    conda env export > requirements.yml
  • Remove the environment: If you need to clean up, you can remove the environment:
    conda env remove --name stock-charts-demo

Using Pip

Alternatively, you can use pip to set up the environment:

  • Create a new virtual environment:
    • Windows:
      py -m venv .stock-charts-demo
    • Unix/macOS:
      python3 -m venv .stock-charts-demo
  • Activate the environment:
    • Windows:
      .stock-charts-demo\Scripts\activate
    • Unix/macOS:
      source .stock-charts-demo/bin/activate
  • Verify the environment:
    • Windows:
      where python
    • Unix/macOS:
      which python
  • Install required packages:
    pip install -r requirements.txt
  • Export installed packages: To export the installed packages to a file:
     pip list --format=freeze > requirements.txt

Acknowledgements

  1. Rrenkocharts project on chranga's github account.
  2. Renko Chart Demo on Google Colab.
  3. How to Create a Candlestick Chart in Matplotlib - A tutorial from GeeksforGeeks on creating financial charts using matplotlib.

Tech Stack

Python Matplotlib Jupyter Notebook


Codeium

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published