This project provides a demo for generating Stock charts.
Charts used
- Renko
- Candlestick
- Scatter Plot
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
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
- Windows:
- Activate the environment:
- Windows:
.stock-charts-demo\Scripts\activate
- Unix/macOS:
source .stock-charts-demo/bin/activate
- Windows:
- Verify the environment:
- Windows:
where python
- Unix/macOS:
which python
- Windows:
- 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
- Rrenkocharts project on chranga's github account.
- Renko Chart Demo on Google Colab.
- How to Create a Candlestick Chart in Matplotlib - A tutorial from GeeksforGeeks on creating financial charts using matplotlib.