I need a robot that will read the signals I receive on Telegram.
And through the information contained in the signals, you will schedule orders on MT5.
There are 3 take Profitt. So you need to make a partial exit when you reach take 1 and 2. For example, if I put in 1 lot. In take 1 leave with 0.70 and in take 2 with 0.20. 0.1 of the lot is left for take 3. If take 1 is reached, the stop loss is changed to the entry value. If it reaches take 2, the stop loss is changed to the value of take 1. That is, when reaching the takes, what is left of the lot to try the next take, if not, will not generate losses
- Has option to select batch size for each account.
- Read all kinds of signal formats
- Have the option to use TP2 and TP3 or not
- Some brokers use gold as "GOLD" and others as "XAUUSD", so it is necessary for him to read both.
- check if there is no other open order for the same pair, and if there is, it must close the already open order and open the new order.
相似订单
Alguem poderia desenvolver um rob estilo o Neuromint? De mini entradas e stops em um unico candle no tempo grafico de 5min? Seria para o XAUUSD e USDJPY de preferencia
Já tenho um código MQL5 com uma base do funcionamento. Basicamente o EA traça um canal na virada do dia (penso que utilizar horário seria melhor em razão da diferença entre corretoras), com base em um número x de candles, calcula e posiciona ordens stop com base em % do capital. Caso uma ordem aberta venha a stopar, o EA deve realizar uma virada de mão com base no mesmo canal, contudo recalculando o lote para que
✅ Estrutura original preservada ✅ Painel original ✅ Lógica original ✅ Arquitetura original ✅ Sem parâmetros alterados ✅ TF dinâmico ✅3 timeframes : H1 / H4 / D1 Time frame Dinamicos podendo mudar para M1/M30/H1 ou D1/W1/MN Quero que fique como está a imagem abaixo e adicionar extra time frame nas entradas
//+------------------------------------------------------------------+ //| EA Cruzamento de Médias MT5 | //+------------------------------------------------------------------+ #property strict #include <Trade/Trade.mqh> CTrade trade; //---- Inputs input int FastMAPeriod = 20; input int SlowMAPeriod = 50; input double LotSize = 0.01; input int StopLoss = 300; input int TakeProfit = 600; //----