I will write you an advisor for free - page 14

 

Good afternoon, who can take an EA for maintenance? Periodically need adjustments to the robot, tweaking the cake strategy, adding new entry orders, etc.

***

 
Emil Zakirov #:

Good afternoon, who can take an EA for maintenance? Periodically need adjustments to the robot, tweaking the cake strategy, adding new entry orders, etc.

***

You need to go here: Freelance.

(Just for the record, this is not a free email ad site).

Торговые приложения для MetaTrader 5 на заказ
Торговые приложения для MetaTrader 5 на заказ
  • www.mql5.com
Самый большой фриланс c разработчиками программ на MQL5
 
Hello, who can write an EA? When you first start it, a virtual BuyStop and SellStop order is placed at a distance from the current price, and when one of them triggers, the second one is deleted. After the price has passed 20 points (parameter Take Profit), the robot will close the order and wait for the next open order. If the price turns around and goes in the opposite direction, then after Distance, it will open a locking order with a larger lot, which is calculated using the formula: Volume of lot No. 1 multiplied by the value of Lot Multiplier from the settings. If price continues to move in the desired direction, the Expert Advisor will calculate the Breakeven price and the closing price for both orders so as to gain profit from one order overlapping the loss of the other and reaching the profit specified in the settings multiplied by the number of open orders. Locking orders can be opened until the number of Max Lock Orders is reached, or until the profit is reached, and then again.
 
viktor.malunov # who can write an EA? When you first start it, a virtual BuyStop and SellStop order is placed at a distance
  1. There is no need to create pending orders in code.

    1. The pending has the slight advantage, A) you are closer to the top of the queue (filled quicker), B) there's no round trip network delay (filled quicker.)

      Don't worry about it unless you're scalping M1 or trading news.

    2. Humans can't watch the screen 24/7, so they use pending orders; EAs can, so no need for pending orders, have it wait until the market reaches the trigger price and just open an order.

  2. You haven't stated a problem, you stated a want.
         How To Ask Questions The Smart Way. (2004)
              Prune pointless queries.

    You have only four choices:

    1. Search for it (CodeBase or Market). Do you expect us to do your research for you?

    2. Try asking at:

    3. MT4: Learn to code it.
      MT5: Begin learning to code it.

      If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into your code.

    4. Or pay (Freelance) someone to code it. Top of every page is the link Freelance.
                Hiring to write script - General - MQL5 programming forum (2019)

    We're not going to code it for you (although it could happen if you are lucky or the problem is interesting.) We are willing to help you when you post your attempt (using CODE button) and state the nature of your problem.
              No free help (2017)

Reason: