今天,我们来聊聊Larry Conners的RSI 2策略,这是一款适用于MetaTrader 5的交易系统。这个策略结合了三种指标:相对强弱指数(RSI)、快速移动平均线(5期)和慢速移动平均线(200期)。
这个策略的核心思想是通过慢速移动平均线(MA 200)来判断市场的总体趋势,然后在回调时买入,在反弹时卖出。
多头入场规则
- RSI(2期)小于6。
- 前一根蜡烛的收盘价高于慢速移动平均线。
多头出场规则
- 收盘价高于快速移动平均线。
空头入场规则
- RSI(2期)大于95。
- 前一根蜡烛的收盘价低于慢速移动平均线。
空头出场规则
- 收盘价低于快速移动平均线。
输入参数设置
inputdouble lot = 1; //手数inputint shortSmaPeriods = 5; //快速MA周期inputint longSmaPeriods = 200; //慢速MA周期inputint RSIPeriods = 2; //RSI周期 inputint RSILongEntry = 6; //RSI多头入场inputint RSIShortEntry = 95; //RSI空头入场inputint slippage=3; inputbool useStopLoss=true; //启用止损inputdouble stopLossPips=30; //止损(点数)inputbool useTakeProfit=true; //启用止盈inputdouble takeProfitPips=60; //止盈(点数)
在EUR/USD货币对的1小时图上,效果最佳。可以根据您的需求调整输入参数。


评论 0