2025-02-07 17:54:52 +09:00
|
|
|
import streamlit as st
|
|
|
|
|
|
2025-03-29 19:17:49 +09:00
|
|
|
crawling_page = st.Page("crawling.py", title="크롤링")
|
|
|
|
|
super_quality_page = st.Page("super_quality.py", title="슈퍼 퀄리티 전략")
|
|
|
|
|
super_value_momentum_page = st.Page("super_value_momentum.py", title="슈퍼 밸류 모멘텀 전략")
|
2025-02-07 17:54:52 +09:00
|
|
|
|
|
|
|
|
pg = st.navigation({
|
|
|
|
|
'크롤링': [crawling_page],
|
|
|
|
|
'전략': [super_quality_page, super_value_momentum_page],
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
st.set_page_config(page_title="콴트 매니저", page_icon=":material/edit:")
|
|
|
|
|
pg.run()
|