mirror of
https://github.com/silencesdg/mt5_python_ea_suite.git
synced 2026-08-02 13:47:43 +00:00
4cb4f4a15e
- 重构核心模块:DataProvider 依赖注入、RiskController 门面、信号注册表 - 新增 FastAPI 代理服务 (run/server.py),支持局域网远程调用 MT5 - 新增 RemoteDataProvider + AttrDict,远端无缝替代 LiveDataProvider - 新增序列化模块,MT5 对象转 JSON 兼容格式 - 重构入口点至 run/ 包,支持 python -m run.realtime/server/backtest/optimize - 更新 CLAUDE.md 文档 Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
59 lines
2.3 KiB
Python
59 lines
2.3 KiB
Python
import pandas as pd
|
||
from datetime import datetime
|
||
from .base_strategy import BaseStrategy
|
||
from config import STRATEGY_CONFIG
|
||
|
||
class DailyBreakoutStrategy(BaseStrategy):
|
||
def __init__(self, data_provider, symbol, timeframe, bars_count=None):
|
||
super().__init__(data_provider, symbol, timeframe)
|
||
# 从配置中获取参数,如果传入参数则使用传入的参数
|
||
config = STRATEGY_CONFIG.get('daily_breakout', {})
|
||
self.bars_count = bars_count if bars_count is not None else config.get('bars_count', 1440)
|
||
|
||
def _calculate_indicators(self, df):
|
||
df['time'] = pd.to_datetime(df['time'], unit='s')
|
||
today = datetime.now().date()
|
||
day_data = df[df['time'].dt.date == today]
|
||
if day_data.empty:
|
||
return df, None, None
|
||
day_high = day_data['high'].max()
|
||
day_low = day_data['low'].min()
|
||
return df, day_high, day_low
|
||
|
||
def generate_signal(self):
|
||
rates = self.data_provider.get_historical_data(self.symbol, self.timeframe, self.bars_count)
|
||
if rates is None or len(rates) < 2:
|
||
return 0
|
||
df = pd.DataFrame(rates)
|
||
df, day_high, day_low = self._calculate_indicators(df)
|
||
|
||
if day_high is None or day_low is None:
|
||
return 0
|
||
|
||
if df['close'].iloc[-1] > day_high:
|
||
return 1
|
||
elif df['close'].iloc[-1] < day_low:
|
||
return -1
|
||
return 0
|
||
|
||
def run_backtest(self, df):
|
||
df = df.copy()
|
||
# 'time' 可能是列(来自MT5原始数据)或索引(来自MultiTimeframeDataStore)
|
||
if 'time' in df.columns:
|
||
df['time'] = pd.to_datetime(df['time'], unit='s')
|
||
elif isinstance(df.index, pd.DatetimeIndex):
|
||
df['time'] = df.index
|
||
else:
|
||
df['time'] = pd.to_datetime(df.index, unit='s')
|
||
df['date'] = df['time'].dt.date
|
||
|
||
# 用前一日的最高/最低价作为突破基准,避免未来数据泄露
|
||
daily_high = df.groupby('date')['high'].max()
|
||
daily_low = df.groupby('date')['low'].min()
|
||
prev_high = df['date'].map(daily_high.shift(1))
|
||
prev_low = df['date'].map(daily_low.shift(1))
|
||
|
||
signals = pd.Series(0, index=df.index)
|
||
signals[df['close'] > prev_high] = 1
|
||
signals[df['close'] < prev_low] = -1
|
||
return signals |