1. This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.
  2. Welcome back! Thank you for being a part of this Traders Community. Let's discuss and share :)
    Selamat datang kembali! Trimakasih telah menjadi bagian dari Komunitas Trader ini. Mari berdiskusi dan berbagi :)
    Dismiss Notice

Suggestion I will create your ea for FreE on mt4 or mt5

Discussion in 'Expert Advisor atau Robot Forex' started by aka47, 26 Jan 2020.

?

Would you recommend us?

  1. YES

    10 vote(s)
    58.8%
  2. NO

    7 vote(s)
    41.2%
  1. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    We are a team of architects in programming language mql4 / mql5. We have experience and offer to share it and help you develop your own unique robot. Contact us via telegram for faster contact (( https://t.me/IamrealjokR))) Our profile on the official website https://www.mql5.com/us/users/elerikete
    We want to create a community where we can create robots and have constructive experiences that we can contribute and that you contribute to us.
    Do you send signals to telegram? We can send photos, signals from mt4 to telegram.
    -------------------PLEASE READ RULES--------
    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.
      MACD_Sample__2.png MACD_Sample__2.png
    4. Positions are closed at opposite signals: Buy positions are closed at Sell signals, and Sell positions are closed at Buy signals.

    5. Positions are opened at the market price, when a new bar emerges. The Expert Advisor is to be tested using Open prices, so there is no need to add functions for disabling operations inside the bar.

    6. Additional filters for opening a position:
    The absolute value of MACD's main line will be used to filter out weak signals: the signal is only confirmed if this value is greater than open_level (in points). Signal confirmation conditions are as follows:

    • Confirmation of a buy signal: Abs(macd_current)>open_level
    • Confirmation of a sell signal: macd_current>open_level


    7. Additional filters for closing a position:
    The absolute value of MACD's main line will also be used to confirm position closure: the signal is confirmed if this value is greater than close_level (in points). Close signal confirmation conditions are as follows:

    • Confirmation to close Buy positions — macd_current>close_level
    • Confirmation to close Sell positions — Abs(macd_current)>close_level
    8. Close by Take Profit — during position opening, a Take Profit level is set at a fixed distance from the open price, specified in points. The value is set in the InpTakeProfit input parameter.

    9. Position management
    TrailngStop is used to protect profit. Stop Loss is set if profit in points exceeds the value specified in the InpTrailingStop parameter. If the price continues to move in the profit direction, Stop Loss should be trailed at the given distance. Stop Loss cannot be moved towards the loss direction, i.e. the Stop Loss value cannot be increased. If none of protective orders (Take Profit or Stop Loss) triggers, the position should be closed by an opposite signal. No other position exit methods are available.


    What is contained in the Requirements Specification?
    Trading idea
    Describe the general underlying idea in the first part of the Requirements Specification. Example: "If the price approaches the resistance level twice and rolls back from it, the next time it is likely to break resistance." Here you can add a chart with the resistance/support lines, indicators and explanatory notes. Exact numbers or calculation algorithms are not required in the idea description. So, in this example we do not need to explain how to determine:

    • resistance level,
    • level breakout,
    • the concept of "is likely to".
    Some abstraction at the initial stage will help focus on the idea rather than on technical details. This way you can generate multiple modifications of your trading strategy by replacing or combining strategy blocks, indicators and filters. With the common general idea, you will use different input parameters for your trading robots.
    Next, you need to describe all terms and concepts contained in the idea description. If trend is important for your strategy, clearly define what indicator should be used to determine the trend direction and strength. The numerical characteristics of these definitions form the basis of Expert Advisor's input parameters, and can be optimized in the Strategy Tester. So, the first section of the Requirements Specification is "The Trading Idea".

    Terms and definitions
    It is recommended to create a separate section in the Requirements Specification for explaining related terms and definitions. Explain terms in separate paragraphs. Use bold font to highlight the key concepts of your trading strategy. Where applicable, you may add an image. Input parameters of the desired EA can be written in italics.

    Trading signals
    This is the most important section of Requirements Specification. It provides the description of conditions, market states and indicator values, under which a Buy deal should be performed. To describe each condition required for generating a Buy signal, choose the numeric parameter affecting the emergence of a signal. For example, this may be the smoothing type and period for a Moving Average. These important parameters will be used as your Expert Advisor's input parameters.
    Provide a separate description of sell conditions, even if they are opposite to buying. This may have specific features, which the programmer may misinterpret. For example, your Buy condition may be set to "Value > 0". Make sure to indicate an exact condition for selling, such as "Value < 0" or "Value <= 0".
    Additional conditions and filters are often used for confirming or canceling trading signals. Use screenshots for various market situations with the visual explanation of indicators and setups. In future, such visualization may help you to analyze situations, when your EA ignores a seemingly obvious signal or
    performs a deal at an unfavorable moment.

    Screenshots and flow charts

    You may use any of free programs for creating screenshots and flow charts.

    The lifetime of signals/orders/positions

    The second important part of a trading strategy is exiting an open position and deleting pending orders. Trading signals can also be canceled after some time or under certain events. Therefore, you need to describe conditions to close a buy/sell position, remove a pending order or cancel a signal.

    Management of open positions and pending orders

    If your trading strategy implies closing by Stop Loss and Take Profit, describe the calculation algorithm. Optionally, you can request a trailing mechanism for a flexible modification of these levels. In this case, you need to describe Trailing Stop conditions and algorithms. SL/TP modification can be performed at a bar opening or on every tick.
     
  2. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
  3. fxzones

    fxzones Member Credit Hunter

    Equity
    Credit
    Ref Point
    5/5,
    This is my review for this thread:
    Very good contribution
     
    • Winner Winner x 1
  4. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    if you need a robot, just don't hesitate and we do it
     
    • Dislike Dislike x 1
  5. Nunosantos

    Nunosantos Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hi aka47, can you use this indi for make EA? Exemple: Open trade wen by signal and close /open sell on sell signal.
    Need martingale if trade close in lost and restart lot after win trade.
    can you do that?
    Thank you.
     

    Attached Files:

  6. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    I'll review the code and tell you right away
     
  7. Nunosantos

    Nunosantos Member Credit Hunter

    Equity
    Credit
    Ref Point
    Ok Thanks
     
  8. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    hello already done your ea I send you by telegram join https://t.me/freeeamaker and send. and leave your comments here
     
    • Dislike Dislike x 1
  9. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    ¡Crearemos robots simples con una sola condición libre! ¡Pide tu robot! 1 robot por persona more info in telegram
     

    Attached Files:

  10. Nunosantos

    Nunosantos Member Credit Hunter

    Equity
    Credit
    Ref Point
    2/5,
    This is my review for this thread:
    This guy is a joke , he said your EA is done so i try. EA dont work like i ask and he just said i need pay $80 if i want what i ask. Them because i ask wy he dont said i need pay in the begining he block me lol. 0 star
     
  11. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Robots with only one condition are free but if you want more things that takes time and time is money and ı send you ea bro sorry for my englısh
     
  12. Nunosantos

    Nunosantos Member Credit Hunter

    Equity
    Credit
    Ref Point
    "I will create your ea for FreE on mt4 or mt5" that is not true
    I ask for EA that open trades wen indicator give signal and if lose next trade will be martingale right?
    Now you said robots with only one condition, but you send me one EA not met any condition, just trade some signals and miss all the other ones.
    Just because I ask why you don't said I have to pay for a complete EA you just delete my message from telegram and block me,you must have something to hide and that is a typical scammer move.
     
    • Like Like x 1
  13. feruyasak

    feruyasak New Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hai, could you help me to make ea from this vulkan indicator please ? :clap::clap::clap::clap:
    file attached

    Thanks a lot
     

    Attached Files:

    • Winner Winner x 1
  14. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    hi bro i can but i need source code .mq4 but whit .ex4 no can view buffers amd no can work bro
     
  15. Nunosantos

    Nunosantos Member Credit Hunter

    Equity
    Credit
    Ref Point
    And in the end the EA don't will work and you have to pay like he did with me.
     
  16. ademola moses

    ademola moses Member Credit Hunter

    Equity
    Credit
    Ref Point
    Hi, could you help me to make ea from this dynamic gain indicator please. features : Lot size. Take profit and stoplost. Indicator setting. Trailing stop. Opposite close. Thanks
    file attached
     

    Attached Files:

    Last edited: 02 Feb 2020
    • Optimistic Optimistic x 1
  17. ademola moses

    ademola moses Member Credit Hunter

    Equity
    Credit
    Ref Point
    Mr aka47 . you did not work on my request or give respond. Hope you are doing well.
     
  18. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Here you have your robot is free whenever the condition of your ea is simple is that in the previous sail the ea opera signal appears if you want to customize your ea will entail an additional cost
     

    Attached Files:

    • Like Like x 1
  19. Patrick Rodrigue

    Patrick Rodrigue New Member

    Equity
    Credit
    Ref Point
    Bonjour, pouvez-vous créer une évaluation environnementale à partir de l'indicateur ci-joint, veuillez
     

    Attached Files:

  20. aka47

    aka47 Member Credit Hunter

    Equity
    Credit
    Ref Point
    Pourriez-vous être plus précis? Je vois plusieurs indicaurs, je ne peux pas essayer de penser à ce que vous voulez dire, donnez-moi plus de détails
    [QUOTE = "Patrick Rodrigue, post: 374156, member: 79685"] Bonjour, pouvez-vous créer une évaluation ambiental à partir de l'indicateur ci-joint, veuillez [/ QUOTE]
    Pourriez-vous être plus précis? Je vois plusieurs indicaurs, je ne peux pas essayer de penser à ce que vous voulez dire, donnez-moi plus de détails
     

Share This Page