As especificações são as seguintes:
EA para realização de operações no Forex, gráfico renko (2R), onde será realizada a comparação de
2 velas em questão.
Primeiramente a vela atual (menor preço e fechamento)
e a última vela fechada (menor preço e fechamento).
As variáveis principais:
PreçoMínimoÚltimaCandle: = Baixa [1];
PreçoFechamentoÚltimaCandle: = Fechar [1];
PreçoMínimoCandleAtual: = Baixo [0];
PreçoFechamentoCandleAtual: = Fechar [0];
Inicialmente haverá apenas 2 condições de comparação.
Primeira:
1 - Se (FechamentoCandleAtual> FechamentoCandleAnterior) e
(PreçoMínimoCandleAtual> PreçoMínimoCandleAnterior)
Pintar velas de verde.
Verificar se há alguma ordem aberta, caso sim, emitir uma ordem no contrário, neste caso, ordem de venda.
Caso vela atual mais alta que a vela anterior, comparando valores de fechamento e preço mínimo de
vela, envie uma ordem de compra.
2 - Se (Preço MínimoCandleAtual <Preço MínimoCandleAnterior) e (FechamentoCandleAtual
<FechamentoCandleAnterior)
Pintar velas de vermelho.
Verificar se há alguma ordem aberta, caso sim, emitir uma ordem no contrário, neste caso, ordem de compra.
Caso vela atual mais baixa que a vela anterior, comparando valores de fechamento e preço mínimo de
vela, envie uma ordem de venda.
Inglês
The specifications are as follows:
EA for Forex trading, renko (2R) chart, where the comparison of 2 candles in question will be performed.
First current candle (lowest price and closing)
and the last candle closed (lowest price and closing).
The main variables:
PriceLastLastCandle: = Low [1];
PriceCloseLastCandle: = Close [1];
CurrentCandleLowPrice: = Low [0];
PriceClosingCandleCurrent: = Close [0];
Initially there will only be 2 comparison conditions.
First:
1 - If (CurrentCandleClose> PreviousCandleClose) and (CandleCurrentLowPrice> PreviousCandleLowerPrice)
Paint candles green.
Check if there are any open orders, if so, issue an order to the contrary, in this case, sales order.
If current candle is higher than previous candle, comparing closing values and minimum candle price, please submit a purchase order.
2 - If (CurrentCandleLowPrice <PreviousCandleLowerPrice) and (CurrentCandleClose <PreviousCandleClose)
Paint candles red.
Check if there are any open orders, if so, issue an order to the contrary, in this case, a purchase order.
If current candle is lower than previous candle, comparing closing values and minimum candle price, please submit a sales order.
類似した注文
The indicator should look for specific conditions in the market based on kijun sen, tenkan sen and kumo values, where kijun sen, tenkan sen, kumo a and b close values are equal to previous close vakues
I need a simple bot for opening range. Simple Entry / Exit rules, to be able to customize the timeframe, time zone (entry candle) and other normal settings like size, etc
Free link free land free land free land free land free free land free land free things free land free land free land free land free land free land free land free Finch I will do it
Platform: MT5 (MQL5) OVERVIEW: I need a custom MT5 indicator that generates only high-probability A+ buy and sell signals. The indicator should combine market structure, support/resistance, liquidity sweeps, candlestick confirmations, session filtering, and Fibonacci retracement logic. FEATURES REQUIRED: SUPPORT & RESISTANCE Automatically detect and draw support and resistance levels. Levels should update
Title Professional AI Automation Trading Bot for Forex & Crypto Solution Language Python (preferred) or MQL5 depending on integration requirements. Categories Expert Advisor (EA) for MetaTrader 5 Automated trading strategies AI/ML-based signal generation Risk management automation Required Skills Strong knowledge of MQL5/Python Experience with MetaTrader API integration Machine learning model deployment
i want a developer to build me a robot according to mt style i want an engine which is going to trade gold with small accounts, i want it to be perfect or any developer who has that existing robot we can negoiate the price
Hi, I am looking for an experienced MQL5 developer to modify an existing, fully functional MetaTrader 5 Expert Advisor (Source code .mq5 Version 2.62 will be provided). Brief Overview of the EA: It executes trades based on 4 custom Supply/Demand levels (R1, R2, S1, S2) which are inputted manually . It uses two custom indicators for confirmation: SPA (Price Action filter) and AMG (Volume/Momentum filter). The code
Description: I am looking for an experienced MQL5 developer to build a fully automated Expert Advisor (EA) for MT5 tailored for Prop Firm challenges and funded accounts. I need a robust, plug-and-play solution with rigorous risk controls. Key Requirements: Platform: MT5 Trading Logic: I am looking for a reliable strategy based either on a Breakout Strategy (e.g., London session breakout) or a Mean Reversion Strategy
I would like a trend and pullback strategy for the robot timeframe:15 minutes(m15) or 1 hour(h1) indicators:50 EMA (Exponential Moving Average)/200 EMA/RSI (14) BUY SET UP 1.Confirm The Trend .50 EMA must be above 200 EMA .Price must be above both EMAs 2.Wait for a pullback .Do not buy when the price shoots up. .Wait for the price to come back near the 50 EMA 3.Confirm entry .ENTER BUY WHEN: .A bullish candlestick
//+------------------------------------------------------------------+ //| Simple XAUUSD EA | //+------------------------------------------------------------------+ input double LotSize = 0.01; input int StopLoss = 500; // in points input int TakeProfit = 1000; // in points input int MAPeriod = 20; int maHandle; int OnInit() { maHandle = iMA(_Symbol, PERIOD_H1, MAPeriod, 0, MODE_SMA