说明
机器人当前能做的事情
1. 趋势交易
机器人仅沿趋势方向交易。
为此,它使用:
EMA 50
EMA 200
规则
买入
EMA50 > EMA200
卖出
EMA50 < EMA200
这帮助它避免了许多逆势交易。
2. RSI 动量过滤器
通过 RSI 进行额外确认。
买入
RSI > 55
卖出
RSI < 45
这过滤掉了弱势设置。
3. ADX 趋势强度过滤器
机器人检查:
市场是否处于趋势状态
规则
ADX > 20
如果市场震荡:
→ 不交易。
这对黄金非常重要。
4. 蜡烛动量过滤器
机器人检查最后一根蜡烛。
买入
看涨蜡烛
卖出
看跌蜡烛
这确保它仅在有当前动量时交易。
5. ATR 动态止损
无固定止损。
止损基于:
当前波动性
这使其在 XAUUSD 上显著更稳定。
优势
减少随机止损
适应市场
6. 风险回报系统
止盈基于风险回报比。
标准:
风险回报比 1:2
示例:
100 点止损
200 点止盈
7. 自动手数计算
机器人自动计算:
手数
基于你的风险
示例
0.5% 风险:
→ 无论止损大小,均保持一致的风险控制。
8. FTMO 每日回撤保护
当达到每日回撤:
关闭所有交易
停止交易
默认值
3.5%
对资金管理公司非常重要。
9. FTMO 总体回撤保护
当达到总亏损:
机器人自我锁定
默认值
8%
10. 每日最大交易次数
防止过度交易。
默认值
每天 3 笔交易
11. 跟踪止损
止损会自动调整。
基于:
ATR 波动率
时间框架 1小时
摘要
Risk management features include a dynamic ATR-based stop loss adapting to current volatility, a risk-to-reward system with a standard 1:2 ratio for take profit, and automatic lot size calculation based on user-defined risk percentage (e.g., 0.5%). The bot enforces FTMO-specific risk controls with daily drawdown protection (default 3.5%) that closes all trades and stops trading upon breach, overall drawdown protection (default 8%) that locks the bot, and limits to a maximum of 3 trades per day to prevent overtrading. A trailing stop based on ATR volatility is also implemented to secure profits.
This bot supports market orders and is suitable for swing trading with medium trade frequency, designed to maintain consistent risk control and adapt to market conditions for prop firm compatibility.
