Volatility Chart is a Django application designed for analyzing and visualizing financial data. It supports importing data from CSV files, calculating financial indicators, and providing interactive charts.
- Import financial data from CSV files.
- Calculate financial indicators.
- Visualize data with interactive charts.
-
Clone the repository:
git clone https://github.com/mandeephp/Volatility_Chart.git cd Volatility_Chart -
Set up a virtual environment:
python -m venv venv source venv/bin/activate # On Windows use `venv\Scripts\activate`
-
Install dependencies:
pip install -r requirements.txt
-
Apply migrations:
python manage.py migrate
-
Run the development server:
python manage.py runserver
- Open your browser and go to
http://127.0.0.1:8000/to access the application.
- Ensure your CSV files match the expected format for importing data.
- To contribute or make changes, create a new branch, make your changes, and submit a pull request.
- Django for providing the web framework.
- Plotly or other libraries for charting (if used).