25 lines
488 B
Python
Raw Permalink Normal View History

2025-04-02 22:55:29 +08:00
import streamlit as st
from config import Config
from auth import Authenticator
class TradingSystem:
def __init__(self):
self.config = Config()
self.auth = Authenticator()
class TradingApp:
def __init__(self):
self.auth = Authenticator()
def login_page(self):
# 登录界面
pass
def dashboard(self):
# 主控制台
pass
def settings(self):
# 策略参数设置
pass