거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

Larry Conners RSI 2 - MetaTrader 5용 expert

게시자:
STANTON ROUX
조회수:
12310
평가:
(32)
게시됨:
2017.12.13 14:18
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

This Expert Advisor uses three indicators, RSI (Relative Strength Index), fast Moving Average (5 period), slow Moving Average (200 period).

The Idea of this strategy is to determine the general trend by using the slow Moving Average (MA 200). Then buy on the dips and sell on the rises.

Long Entry Rules

  • RSI (2 period) is less than 6.
  • Close of previous candle is greater than slow Moving Average.

Long Exit Rules

  • Close is greater than fast Moving Average.

Short Entry Rules

  • RSI (2 period) is greater than 95.
  • Close of previous candle is less than slow Moving Average.

Short Exit Rules

  • Close is less than fast Moving Average.

Input parameters

input double   lot = 1;                  //Lots
input int      shortSmaPeriods = 5;      //Fast MA period
input int      longSmaPeriods = 200;     //Slow MA period
input int      RSIPeriods = 2;           //RSI Period 
input int      RSILongEntry = 6;         //RSI Long Entry
input int      RSIShortEntry = 95;       //RSI Short Entry

input int      slippage=3;
input bool     useStopLoss=true;       //Use Stop Loss
input double   stopLossPips=30;        //Stop Loss (pips)
input bool     useTakeProfit=true;     //Use Take Profit
input double   takeProfitPips=60;      //Take Profit (pips)

Best results on the EUR/USD pair 1H timeframe. Play with inputs to find your desired results.

EUR/USD 1 HR TF

LeadLagRelationshipTester LeadLagRelationshipTester

Script for checking the LeadLagRelationship indicator (https://www.mql5.com/en/market/product/26229)

PS Magicas - Three moving averages PS Magicas - Three moving averages

PS Magicas - Three moving averages that give target and possible entries.

Renko 2.0 Renko 2.0

A complete Renko chart indicator with wicks. Configure using Tick Size, Pip Size, Points or R. Now with Asymetric Reversals!

CDouble & CDoubleVector CDouble & CDoubleVector

A library for common rounding methods used in MQL development, primitive wrapper class for type (double), and vector for CDouble objects. MQL5 and MQL4 compatible!