The expert would be the following: the macd marking down is a short-term bearish trend so as soon as a green buy candle appears, the robot's entry would take place in the sell 2 ticks below the OPEN and not the low and STOP 2 ticks above its HIGH, but the trade is only valid on the next candle v1 or on the second v2, with a 2x1 target based on the pip interval between the ENTRY and the STOP. The same would happen in the direction buy MACD up indicates short term buying trend so the entry candle would be the red one 2 ticks above its OPEN and stop 2 ticks from its LOW, then this pip range would take as a TARGET 2x1. Ok and it's only valid until the next v1 or v2 candle.
It can be based only on the simple average 26 which is the zero Macd axis. Do you understand to make it easier? Price closing above 26 I will not enter the green candle but the red opposite candles at the breakout of the open and stop below the low, the difference from the entry until the stop places a target of 2x1 (200%) or a box to be able to change to 1 X 1.5 (150%). And the same in the sale, that's all. But in the sale I will trade the candle placed in this case the green one, you know?
Con risposta
Arbitraggio
122
44%
/
25%
Arbitraggio
309
58%
/
27%
Arbitraggio
103
41%
/
23%
Pubblicati: 2 codici
Ordini simili
1️ ⃣ Informações Gerais Plataforma: MetaTrader 5 Tipo: Expert Advisor (EA) Operação: Hedge + Grid Dinâmico Indicador base: Average True Range (ATR período 20) 2️ ⃣ LÓGICA OPERACIONAL 🔹 2.1 Abertura Inicial O robô trabalha sempre com ordem de compra e venda ao mesmo tempo (HEDGE) e o fechamento é sempre usando GRID que tem multiplicador de lote e o tamanho (espaçamento) dinâmico com base em um fator de
seu Robô de Elite: Precisão: Filtros RSI e Price Action. Rentabilidade: Lote dinâmico baseado no capital (Compound Interest). Automação 24h: Filtro de horário para evitar spreads altos. Satisfação: Dashboard interativo com "Botão de Pânico"
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
//+------------------------------------------------------------------+ //| 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; //----