Introduction This EA has 2 strategies, namely STRATEGY 1 AND STRATEGY 2 , and allows the user to choose ONLY 1 strategy to trade. These strategies are different because they have different calculation methods to determine the price levels for EA to open the pending BUY and SELL LIMIT orders at the OPEN of a daily candle. The EA trading and operation logics ARE THE SAME for these 2 strategies. This EA is a
Hi, I Need a simple Expert Adviser to trade on price only, no indicators. When activated, the EA simultaneously places 2 pending orders. One is placed as a Buy above the price, and the other is placed as a Sell below (eg; 20 pips, variable). Each order has "parental control" over the other (meaning, when one order is triggered, it cancels out the other). Both pending orders have a trailing stop (eg; 30 pips
Can you create a robot that uses two moving exponential moving averages (EMAs): Requirements Specification for MetaTrader 5 Robot This document outlines the requirements for a MetaTrader 5 trading robot that utilizes two moving exponential moving averages (EMAs) to generate buy and sell signals. 2. Objectives Develop a trading robot that uses two EMAs to identify potential entry and exit points. Ensure the robot can
Please let me know thoughts, pricing and how long it will take please. Project Overview This system will have two main components: * Master EA: Originates trades. * Slave EA: Receives and executes trades on client accounts. The Slave EAs will connect to the Master EA to mirror trades, enabling a high-capacity, scalable copy trading system on MT5 that can handle up to 20,000 accounts if necessary. The Slave and Master
Hie... l want a trading robot that can trade bot currencies and indices.. it must be able to open and close positions on it's own aswell as capitalising on both directions either buy or sell on each candle stick scalping..it must work 24/7
I want to find a Developer to perform this work and settle payments in this Application. I undertake not to communicate with Applicants anywhere else except this Application, including third-party messengers, personal correspondence or emails. I understand that violators will be banned from publishing Orders in the Freelance service
I need an expert MQL5 developer to make an EA that will take trades from 1 master account and as fast as possible with as low slippage as possible distribute them to slave accounts. Whoever installs the slave EA will receive the trades from the master We will have over 10,000 people installing the Slave EA so needs to be very well built Also need a simple panel or way to see the account numbers of the people who
I need who can add Fibonacci levels in my EA to be used for SL TP and BE. Also the EA must report the trades in Telegram chanel. The TP/ SL and BE must be in Fibonacci level where i will choose which level i want to use for TP/SL The lot size must be manual putting. The robot must have pause trading at 22:30Gmt+2 and start trading at 4:30 gmt+2 The Robot must have
Need 6 selection boxes to find a pattern to enter a trade. Each selection will be either buy or sell candle. A) Needs 2 type of trade option. Buy if pattern is met sell if pattern is met Open trade after 1,2,3,4,5,6 pattern options met B) Candle pattern options: 1 buy/sell 2 buy/sell /not used 3 buy/sell /not used 4 buy/sell/not used 5 buy/sell /not used 6 buy/sell /not used C). If pattern is met, the type of
csharp using System; class GoldTrader { public void TradeGold() { // Preparation SelectMarket("XAU/USD"); string timeframe = "4-hour"; // or "daily" // Setting Up Indicators double SMA200 = CalculateSMA(200); double EMA50 = CalculateEMA(50); double RSI14 = CalculateRSI(14); // Analyzing the Market string trend; if (CurrentPrice() > SMA200) { trend = "bullish";