"""Financial Analysis Dashboard - Main Application Landing Page.""" import streamlit as st from components.styles import DARK_THEME_CSS # ---- Configuration ---- st.set_page_config( page_title="Financial Dashboard", page_icon="📈", layout="wide", initial_sidebar_state="expanded", menu_items={ "About": "A professional financial analysis platform with multi-asset support" } ) # ---- Apply Dark Theme ---- st.markdown(DARK_THEME_CSS, unsafe_allow_html=True) # ---- Header ---- st.markdown("# 📈 Financial Analysis Platform") st.markdown("### Professional multi-asset analysis with technical indicators, AI insights, and real-time data") st.markdown("---") # ---- Feature Overview ---- col1, col2, col3 = st.columns(3) with col1: st.markdown("""

📈 Stock Analysis

Comprehensive stock analysis with technical indicators, financial metrics, and TradingView charts.

""", unsafe_allow_html=True) with col2: st.markdown("""

â‚ŋ Cryptocurrency

Track and analyze major cryptocurrencies with real-time market data.

""", unsafe_allow_html=True) with col3: st.markdown("""

💱 Forex Trading

Foreign exchange analysis for major, minor, and exotic currency pairs.

""", unsafe_allow_html=True) st.markdown("
", unsafe_allow_html=True) col4, col5 = st.columns(2) with col4: st.markdown("""

🔍 Market Screener

Advanced screening tools to find investment opportunities across markets.

""", unsafe_allow_html=True) with col5: st.markdown("""

🤖 News & AI Dashboard

AI-powered market insights with sentiment analysis and trading recommendations.

""", unsafe_allow_html=True) st.markdown("---") # ---- Quick Start ---- st.markdown("## 🚀 Quick Start") st.markdown("Use the sidebar to navigate to different sections:") quick_col1, quick_col2, quick_col3 = st.columns(3) with quick_col1: if st.button("📈 Stock Analysis", use_container_width=True): st.switch_page("pages/01_Stocks.py") with quick_col2: if st.button("â‚ŋ Cryptocurrency", use_container_width=True): st.info("Coming soon!") with quick_col3: if st.button("💱 Forex Trading", use_container_width=True): st.info("Coming soon!") st.markdown("
", unsafe_allow_html=True) quick_col4, quick_col5 = st.columns(2) with quick_col4: if st.button("🔍 Market Screener", use_container_width=True): st.info("Coming soon!") with quick_col5: if st.button("🤖 News & AI Dashboard", use_container_width=True): st.info("Coming soon!") st.markdown("---") # ---- Sidebar ---- with st.sidebar: st.markdown("## 📋 Navigation") st.info("Select a page from the sidebar to get started.") st.markdown("---") st.markdown("## â„šī¸ About") st.markdown(""" This platform provides comprehensive financial analysis across multiple asset classes: - **Stocks**: Technical & fundamental analysis - **Crypto**: Real-time cryptocurrency tracking - **Forex**: Currency pair analysis - **Screener**: Find investment opportunities - **Dashboard**: AI-powered insights """) st.markdown("---") st.markdown("### 🔧 Features") st.markdown(""" - ✅ Real-time data - ✅ Technical indicators - ✅ TradingView integration - ✅ Dark theme UI - ✅ AI-powered insights - ✅ News sentiment analysis """)