Watch how to download trading robots for free
Find us on Telegram!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Experts

Expert Advisor based on the rollback from the MA channel boundary - expert for MetaTrader 4

Views:
13140
Rating:
(25)
Published:
2016.02.01 08:47
Updated:
2016.11.22 07:32
range_ea.mq4 (33.59 KB) view
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

The Moving Average indicator data is used for trading. If the price goes away from the Moving Average by a certain number of points, then an order is placed in the direction of the Moving Average line.

The EA can make profit, but only a small one. It also requires a large deposit.

Idea of this EA was mine. The code of the EA was written by Sergey Diubakin.

The solid red line on the figure is the value of the Moving Average indicator, the dotted red line is the boundary of the channel (Range), which is calculated using the indicator value, and at the crossing of which a corresponding order is opened.

At the lower boundary of the channel (Range) the EA opens a Buy order, at the upper boundary — Sell order.

In order for the EA to open a Buy or Sell order on a candlestick/bar that touches the channel boundary (Range), the High or Low of the previous candlestick/bar (the "first" bar that precedes the "zero" bar) must be below/above the Range level: the High of the "first" bar must be below the upper boundary of the Range level o open a Sell order, the Low of the "first" bar must be above the lower boundary of the Range level to open a Buy order.

Also this EA additional plug-in modules: Turn, Step Down and Trade Time.

  • The Turn module — places limit orders at the Stop Loss level of the main order in the opposite direction. I thought that this module would be helpful in the case when the price keeps moving away from the MA line once reaching the channel boundary.
  • The Step Down module — places additional order in the direction of the main order. This module was used in another Expert Advisor.
  • The Trade Time module — sets the time interval for the EA to trade (does not apply to the orders of the Step Down module).


Expert Advisor Settings:

  1. Moving Average

    • Period – parameter from the Moving Average indicator menu.
    • Shift – parameter from the Moving Average indicator menu.
    • Method MA – parameter from the Moving Average indicator menu.
    • Apply to – parameter from the Moving Average indicator menu.
    • Range – the distance (measured to the above and below) from the Moving Average indicator value at this point in time. Once the price reaches the Range level, the EA can open the first main order.

  2. Initial lot

    • LotConst_or_not – allows the user to choose whether to start trading with the same lot or to recalculate the initial lot depending on the changes of the deposit:
      true – the first lot will be fixed and equal to the value of Lots specified below.
      false – the first lot will change dynamically with the deposit changes and will depend on the RiskPercent parameter and the deposit size.
      Lots = AccountBalance() * (RiskPercent / 100.0) / 10000.0
    • Lots – sets the initial trading lot.
    • RiskPercent – sets the initial trading lot depending on the deposit.

  3. Take Profit – profit level of an order (specified in points of the chart the EA is attached to).

  4. Stop Loss – loss level of an order (specified in points of the chart the EA is attached to).

  5. Trailing stop – automatically moved Stop Loss level.

    • true – module is activated (enabled);
    • false – module is deactivated (disabled).

  6. Module Turn

    • true – module is activated (enabled);
    • false – module is deactivated (disabled).
    • Turn – distance after which an opposite pending order is placed.
    • LotMultiplicator – lot increase ratio.
    • Turn_TakeProfit – profit level of an order which will be opened using this module (specified in points of the chart the EA is attached to).

  7. Module Step Down

    • true – module is activated (enabled);
    • false – module is deactivated (disabled).
    • Step Down – distance (gap) between the opened orders in the order grid, which is placed against the "trend".

  8. Module Trade time

    • true – module is activated (enabled);
    • false – module is deactivated (disabled).
    • Open trade – time, starting from which the EA may open the first main order, if there is a signal.
    • Close trade – time, after which the EA can not open the first main order.

  9. Magic (Magic Number) – the program code of the EA, which allows it to distinguish its own orders from others.

  10. Logo and data output – the module allows to enable/disable the table (earnings today, yesterday etc.):

    • true – module is activated (enabled);
    • false – module is deactivated (disabled).

  11. Time frame – program code, which allows to specify the time frame of the chart for the EA to use for trading.

    • Current – the time frame, which is specified in the terminal.
    • M1, M5, M15, M30, H1, H4, D1, W1, MN1 – fixed time frames.

Translated from Russian by MetaQuotes Ltd.
Original code: https://www.mql5.com/ru/code/12375

RSI Bollinger Bands EA RSI Bollinger Bands EA

RSI Bollinger Bands are used to establish overbought and oversold RSI regions for generation of short and long trading signals.

ScalpWiz 9001 ScalpWiz 9001

Trades on price spikes around important financial announcements.

Tick Chart Tick Chart

Tick chart of the price/spread/volume. Saves tick data in a file.

Grid Grid

Arrangement of the pending orders at equal intervals (steps).