Rio pro 1.0

Specification

When ordering or developing a trading robot, you need to formulate requirements: tasks to be performed by the robot, conditions under which it will operate, response to incidents and emergency situations, required control methods, etc. Trading robots are programs, which should strictly follow the underlying logic. In order to program the algorithm of actions, you should prepare its detailed description.

Description of a trading strategy is provided in the form of Requirements Specification. The more details you provide, the less misunderstanding will occur between you (the Customer) and the programmer (the order Developer).

The important part of Requirements Specification for an Expert Advisor is presentation of clear formal trading rules. Even if you are not ordering an EA, but want to develop one yourself, you should start with the definition of these rules. Prepare the Requirements Specification and include the EA testing/optimization related points. Add hypotheses, which you will use to check the quality and stability of your trading strategy, describe criteria for selecting the optimal parameters and explain why you consider them important.

Include all EA development stages to the Requirements Specification — this will make the algorithm idea clear for the Developer, and will help you recall the details weeks, months, or even years later. Algo trading is not a hobby, but a thorough research path, all stages of which need to be properly documented. A trading system development diary will be very useful whenever you'll need to test a new idea.

Requirements Specification examples

Here is an example of Requirements Specification for the development of the MACD Sample Expert Advisor, which is available in the MetaTrader 5 standard package.

1. The idea of the trading system is as follows: market entries are performed when MACD's main and signal lines intersect in the current trend direction.

2. Trend is determined based on the Exponential Moving Average with the specified period (InpMATrendPeriod). If the current EMA value is greater than the previous one, the trend is seen as growing (ema_current > ema_previous). Alternatively, if current EMA is below the previous one, the trend is considered to be falling (ema_current< ema_previous).

3. Trading Signals:

  • Buy signal: the main MACD line crosses the signal line upwards (macd_current>signal_current & macd_previous<signal_previous).
  • Sell signal: the main MACD line crosses the signal line downwards (macd_current<signal_current && macd_previous>signal_previous). The below figure shows Buy and Sell cases.


  • Files:

    Responded

    1
    Developer 1
    Rating
    (273)
    Projects
    401
    27%
    Arbitration
    40
    40% / 50%
    Overdue
    1
    0%
    Free
    2
    Developer 2
    Rating
    (194)
    Projects
    241
    34%
    Arbitration
    11
    45% / 45%
    Overdue
    8
    3%
    Working
    Published: 1 article, 8 codes
    3
    Developer 3
    Rating
    (23)
    Projects
    45
    20%
    Arbitration
    25
    28% / 48%
    Overdue
    12
    27%
    Free
    4
    Developer 4
    Rating
    (37)
    Projects
    59
    27%
    Arbitration
    26
    19% / 54%
    Overdue
    10
    17%
    Working
    Published: 1 code
    5
    Developer 5
    Rating
    (47)
    Projects
    67
    37%
    Arbitration
    5
    40% / 40%
    Overdue
    1
    1%
    Free
    6
    Developer 6
    Rating
    (563)
    Projects
    651
    33%
    Arbitration
    41
    41% / 46%
    Overdue
    11
    2%
    Busy
    7
    Developer 7
    Rating
    (574)
    Projects
    945
    47%
    Arbitration
    309
    58% / 27%
    Overdue
    125
    13%
    Free
    8
    Developer 8
    Rating
    (27)
    Projects
    27
    26%
    Arbitration
    2
    0% / 50%
    Overdue
    1
    4%
    Free
    9
    Developer 9
    Rating
    (14)
    Projects
    20
    25%
    Arbitration
    0
    Overdue
    2
    10%
    Free
    Published: 3 codes
    10
    Developer 10
    Rating
    (568)
    Projects
    641
    41%
    Arbitration
    25
    48% / 36%
    Overdue
    46
    7%
    Working
    11
    Developer 11
    Rating
    (77)
    Projects
    243
    74%
    Arbitration
    7
    100% / 0%
    Overdue
    1
    0%
    Free
    Published: 1 article
    12
    Developer 12
    Rating
    (296)
    Projects
    475
    40%
    Arbitration
    105
    40% / 24%
    Overdue
    80
    17%
    Busy
    Published: 2 codes
    Similar orders
    Manly 30 - 200 USD
    ZigZag based on oscillators is needed The idea of ​​the indicator Create a ZigZag indicator, which is constructed based on extreme values determined using oscillators. It can use any classical normalized oscillator, which has overbought and oversold zones. The algorithm should first be executed with the WPR indicator, then similarly add the possibility to draw a zigzag using the following indicators: CCI Chaikin RSI
    AI Trading Bot 30 - 80 USD
    Essential Components for Indicator Specification Objective & Overview: Briefly describe what the indicator calculates (e.g., trend, momentum, volatility) and its main purpose. Input Parameters (Variables): List all user-definable inputs (e.g., Moving Average periods, ATR multiplier) to avoid hardcoding values. Detailed Logic/Calculation Rules: Explain the formula or logic to calculate indicator values. Define
    The basic idea of CRO is to simulate coral colonies that develop and compete for space on a reef, ultimately forming an optimal structure. Each coral in the reef represents a potential solution to the optimization problem under consideration. The reef is modeled as a two-dimensional N×M grid. Each grid cell can either be occupied by a coral or left empty. A coral is a coded solution to an optimization problem. For
    Hi, I hope you’re doing great. I’d like to share the project details. The original EA is already working, but I need you to first review and verify that all existing features are functioning correctly. After confirming everything works properly, the next task is to add a simple user dashboard that shows the number of detected zones, buy/sell/none status, and includes an ON/OFF button. Also, please make sure that
    looking for Expert to create or ready made solution for bonus hedge auto set cross trading of opposite trading strategy. the expert may guide what max and best he can do to make the EA perfect
    Set specific time to run this function(order). The time can be hard-coded or inputted by user. Time format: HH:MM:SS:ss Example: 17:58:48:59 -> This means an order will be triggered at 5 pm 58min 48sec 59 today. Set “Stop loss” and order a Sell stop. “At price” triggered automatically: current(specific time set above 1) Gold price - 2$ Stop loss: current Gold price + 2$ Volume: 0.1 (It can be hard-coded or inputted
    Simplebot 30+ USD
    #include <Trade/Trade.mqh> CTrade trade; input double LotSize = 0.1; input int FastMA = 10; input int SlowMA = 20; int fastHandle, slowHandle; // Initialize indicators int OnInit() { fastHandle = iMA(_Symbol, PERIOD_CURRENT, FastMA, 0, MODE_SMA, PRICE_CLOSE); slowHandle = iMA(_Symbol, PERIOD_CURRENT, SlowMA, 0, MODE_SMA, PRICE_CLOSE); return(INIT_SUCCEEDED); } void OnTick() { double fastMA[2]; double
    In need of an automated bot that strongly detect support and resistance zones where price has a high probability of reacting ,rejecting or reversing. The zones should be built on combibation of of : (a)swing high and swing low.(b)repeated price reaction c)rejection strength (d)break and retest behaviour (e) consolidation origin before implusive move (f) strong displacement candles
    I need a mt5 Expert advisor ea to manage intraday trades with strict risk management. The EA must -Handle between 5 to 8 clean trades a day max altogether throughout all 3 sessions. no big news trading times and no overnight trades -Use 1% on forex pairs and upto 2% on XAUUSD risk per trade - Automatically calculate lot size based on stop loss -use fixed RR ratio [1:2] For forex pairs, the stop loss should be
    Ninjatrdaer Script 500 - 1000 USD
    I am looking to purchase a ninjatrader script, if there is any for sale, i mean a ready made ninjatrdaer script that trade futures, i need the seller to show me a backtest of the system, you know send some results, I would like to see a 1 year and YTD backtest

    Project information

    Budget
    30+ USD
    Deadline
    from 5 to 14 day(s)