# Importing Streamlit for building the web-based interactive application framework import streamlit as st # Function to display the Grafana Dashboard sections def display_project_dashboard(): st.markdown( """

Project Dashboard Overview

We are using Grafana for efficient data querying and visualization.

Grafana Dashboard

The Grafana dashboard provides an interactive and dynamic interface for real-time data visualization and analysis.

Grafana Logo

Dashboard Overview

This section displays dashboard snapshots from the project, organized by categories.


Stock Market Overview Snapshot 1

""", unsafe_allow_html=True, ) # Section 1: Stock Market and Project Dashboard Overview st.markdown( """
1. Stock Market and Project Dashboard Overview

This section provides an overview of the stock market, project details, and descriptions of the companies used in the project, including MAANG, Nvidia, Microsoft, and TCS.

Stock Market Overview Snapshot 1

Stock Market Overview Snapshot 2

Stock Market Overview Snapshot 3

Stock Market Overview Snapshot 4

""", unsafe_allow_html=True, ) # Section 2: Numerical Analysis st.markdown( """
2. Numerical Analysis

This section displays numerical data of the stock market, featuring graphs of open, high, low, and close prices along with volume bar plots, RSI, and moving averages.

Numerical Analysis Snapshot 1

Numerical Analysis Snapshot 2

Numerical Analysis Snapshot 3

""", unsafe_allow_html=True, ) # Section 3: Model Prediction st.markdown( """
3. Model Prediction

This section highlights model predictions, including individual and comparative graphs of predicted and actual values for stock prices, as well as predicted RSI and moving averages.

Model Prediction Snapshot 1

Model Prediction Snapshot 2

Model Prediction Snapshot 3

Model Prediction Snapshot 3

""", unsafe_allow_html=True, ) # Section 4: Textual Analysis st.markdown( """
4. Textual Analysis

This section visualizes sentiment analysis from news headlines, showcasing positive, negative, and neutral sentiment scores.

Textual Analysis Snapshot 1

Textual Analysis Snapshot 2

5. Hybrid Model

The hybrid model combines numerical and textual data for a comprehensive analysis.

Hybrid Model Snapshot 1

Hybrid Model Snapshot 2

Hybrid Model Snapshot 3

Hybrid Model Snapshot 4

""", unsafe_allow_html=True, )