-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain_App.py
More file actions
35 lines (29 loc) · 995 Bytes
/
Main_App.py
File metadata and controls
35 lines (29 loc) · 995 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Main_App.py
import streamlit as st
st.set_page_config(
page_title="OHLCV Analysis Platform",
layout="wide",
page_icon=":material/candlestick_chart:",
)
# Define all top-level pages
app_pages = [
# Analysis dashboard with internal tabs
st.Page("pages/analysis_parent.py",
title="Analysis Dashboard",
icon=":material/analytics:"),
# Data Manager for downloading and managing OHLCV data
st.Page("pages/data_manager_parent.py",
title="Data Manager",
icon=":material/download:"),
# Pattern Manager for labeling and managing patterns
st.Page("pages/pattern_manager_parent.py",
title="Pattern Manager",
icon=":material/pattern:"),
# Pattern Scanner for real-time pattern detection
st.Page("pages/pattern_scanner_parent.py",
title="Pattern Scanner",
icon=":material/search:"),
]
# Create and run the navigation menu
pg = st.navigation(app_pages)
pg.run()