a705593955
- 新增新闻爬取和监控模块 (news_crawler, news_monitor) - 新增 LLM 分析模块 (llm_analyzer) - 新增持仓管理和交易历史存储 - 新增系统日志功能 - 新增前端页面: News, Positions, Settings, SystemLog - 更新路由和 API 接口 - 更新 .gitignore 排除敏感文件
33 lines
1002 B
Python
33 lines
1002 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
数据模型定义
|
|
"""
|
|
|
|
from pydantic import BaseModel
|
|
from typing import Optional, List
|
|
|
|
|
|
class TradeInstruction(BaseModel):
|
|
"""交易指令模型"""
|
|
symbol: str # 交易品种,如 "gold"
|
|
action: str # b=买入, s=卖出
|
|
mount: float # 手数
|
|
price: float # 指令执行价格(买入时为买入价,卖出时为卖出价)
|
|
sl: Optional[float] = 0.0 # 止损点, 可以缺省
|
|
tp: Optional[float] = 0.0 # 止盈点, 可以缺省,若未指定将在服务端设置为0.005
|
|
description: Optional[str] = "" # 订单描述(策略名称)
|
|
|
|
|
|
class StatisticData(BaseModel):
|
|
"""统计数据模型"""
|
|
timestamp: str # 时间戳
|
|
tickCount: int # TICK计数
|
|
bidPrice: float # 买价
|
|
askPrice: float # 卖价
|
|
balance: float # 账户余额
|
|
equity: float # 账户权益
|
|
marginLevel: float # 预付款比例
|
|
positions: list # 持仓信息
|
|
trades: list # 交易记录
|