25 lines
488 B
Python
25 lines
488 B
Python
|
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
|