mirror of
https://github.com/laoxong/nofx.git
synced 2026-06-07 03:07:56 +08:00
d7d2d5c880
Remove prescriptive indicator combinations and let AI freely use all available data. **Changes**: - Emphasized AI has access to **raw sequence data** (MidPrices array, 4h candles) - Listed all available sequences: price, technical (EMA/MACD/RSI), and capital flow (volume/OI) - Removed hard-coded indicator combinations (e.g., "MACD + RSI + Volume") - Changed from prescriptive examples to open-ended analysis freedom - AI can now freely perform trend analysis, pattern recognition, support/resistance calculation - Reduced minimum close-open interval from 30min to 15min for more flexibility **Before**: ``` 强信号示例: - 趋势突破 + 多个指标确认(MACD + RSI + 成交量) - 持仓量暴增 + 价格突破关键位 ``` **After**: ``` 你拥有的完整数据: - 📊 原始序列:3分钟价格序列(MidPrices数组) + 4小时K线序列 - 📈 技术序列:EMA20序列、MACD序列、RSI7序列、RSI14序列 - 💰 资金序列:成交量序列、持仓量(OI)序列、资金费率 分析方法(完全由你自主决定): - 自由运用序列数据,你可以做趋势分析、形态识别、支撑阻力计算 - 多维度交叉验证(价格+量+OI+指标+序列形态) - 用你认为最有效的方法发现高确定性机会 ``` **Philosophy**: Trust AI to discover effective patterns in raw data rather than constraining it to pre-defined indicator combinations. Co-Authored-By: tinkle-community <tinklefund@gmail.com>