Fractals and Engulfing patterns

MQL4 Asesores Expertos

Tarea técnica

I would like an EA that uses fractals but not in the typical fashion. Normally fractals identifies high and low points using the wick or drip of the candle. I would like it to identify zones using the candle stick only.

Fractal Resistance level - High of high stick in the middle and both the low stick and the high stick of the 2 candles on each side being lower would result in a trend line at the highest portion of the highest candle stick representing the fractal level or resistance level.

Fractal Support level - Low stick in the middle with two candle sticks higher would result in a trend line at the lowest portion of the lowest stick representing the support zone.

Bad level - If a candle closes above a resistance level or below a support level then those levels are no longer valid and should be deleted from your array or whatever you are using to store the variable.

Retest and Not New Level - If a candle wick touches a resistance level and forms a resistance fractal without a candle stick closing over the resistance level then this level should be categorized as a retest. If a candle drip touches a support level and forms a support fractal without a candle stick closing under the support level then this level should be categorized as a retest also.

*** The following engulfing candles may be different than the traditional *** 

Bearish engulfing - if(Open[1]<Close[1] && Open[0]>Close[0] && Close[1]-Open[1]<High[0]-Close[0])  I want the 1st bar to be green, second one to be red, and candle stick of first bar to be less than candle wick plus stick of second bar (Last bar created)

Bullish engulfing -  if(Open[1]>Close[1] && Open[0]<Close[0] && Open[1]-Close[1]<Close[0]-Low[0])  I want the 1st bar to be red, second one to be green, and candle stick of first bar to be less than candle wick plus stick of second bar (Last bar created)

Bearish engulfing candle - If there is a bearish engulfing candle and neither stick closes above the resistance but the wick touches or crosses over the resistance than this would signal a potential sell or short position.

Bullish engulfing candle - If there is a bullish engulfing candle and neither stick closes below the support but the wick touches or crosses under the support than this would signal a potential buy or long position.

Zone test signifying reversal - If the candle opens, touches or goes above with the wick of a candle and closes red. Then short or sell position potentially opens.

                                         - If the candle opens, touches support or goes below with drip of candle and then closes green. Long or buy position is potentially opened. 

Short positions #1 : if the previous criteria is met than the final way to check if a potential position is good is to check the difference between the last unbroken resistance level and the current one being tested and compare it to the last support level and the current resistance level being tested. It should be at least 2 to 1. if last unbroken resistance minus current position is at least half of the current position minus the last unbroken support level then short.

Long positions #1: if the previous criteria is met than the final way to check if a potential position is good is to check the difference between the last unbroken support level and the current one being tested and compare it to the last resistance level and the current support level being tested. basically the same setup as the last with a variable represting a ratio between the two. 

*** This may change according to the pair and time frame being traded. An adjustable variable representing the ratio between the two differences will be required *******

Short position #2 : find the high of the resistance levels candles and current candles testing the zone. Whatever the higher wins. I want to subtract the current price from that price and compare it to the difference between the current price and the last unbroken support. adjustable variable representing a ratio between the two.

Long Position #2 : find the low of the support levels candles and current candles testing the zone. Whatever the lower wins. I want to subtract the low price from the current price and compare it to the difference between the last unbroken resistance price and the current price. Also, adjustable variable representing a ratio between the two.

Short 1 Stop loss would be placed at the lowest drip of the previous unbroken support not being tested. 

Short 2 Stop loss would be placed on the lowest drip of the support being tested.

Long 1 Stop loss would be placed on the highest wick of the previous unbroken resistance not being tested.

Long 2 stop loss would be placed on the highest wick of the resistance being tested. 

Lot size would be calculated based off of current difference of stop location, price and adjustable variable representing the amount of risk I would like to make per trade.

Take profit on the Long would be at the resistance level

Take profit on the short would be at the support level

 

I am working too much. I don't have time to make this program or trade manually. 

Han respondido

1
Desarrollador 1
Evaluación
(2077)
Proyectos
2636
61%
Arbitraje
113
45% / 26%
Caducado
418
16%
Trabaja
2
Desarrollador 2
Evaluación
(2422)
Proyectos
3042
66%
Arbitraje
77
48% / 14%
Caducado
340
11%
Trabaja
3
Desarrollador 3
Evaluación
(1853)
Proyectos
3455
88%
Arbitraje
73
40% / 15%
Caducado
265
8%
Libre
4
Desarrollador 4
Evaluación
(130)
Proyectos
210
40%
Arbitraje
90
20% / 43%
Caducado
85
40%
Libre
5
Desarrollador 5
Evaluación
(17)
Proyectos
22
73%
Arbitraje
2
0% / 100%
Caducado
10
45%
Libre
6
Desarrollador 6
Evaluación
(89)
Proyectos
137
24%
Arbitraje
35
9% / 40%
Caducado
52
38%
Libre
7
Desarrollador 7
Evaluación
(121)
Proyectos
134
66%
Arbitraje
36
25% / 56%
Caducado
22
16%
Libre
8
Desarrollador 8
Evaluación
(49)
Proyectos
134
27%
Arbitraje
62
13% / 53%
Caducado
58
43%
Libre
9
Desarrollador 9
Evaluación
(490)
Proyectos
1016
58%
Arbitraje
29
28% / 24%
Caducado
132
13%
Libre
10
Desarrollador 10
Evaluación
(1)
Proyectos
1
0%
Arbitraje
1
0% / 100%
Caducado
0
Libre
Solicitudes similares
I want a program that will help calculate and enter the market on full margin for me. I just need to put in the price for entry, Stop loss and TP then it will calculate the lot sizes for entering the trade on full margin on Mt5
"I need an expert advisor (EA) based on stochastic divergence and candlestick formation. It should be able to identify both hidden and regular divergences. The EA should also include modified risk-reward ratios, modified timeframes, and a trailing stop loss. It is important that the EA is 100% accurate. Once an experienced developer applies, I will share the complete strategy."
I am seeking a highly skilled and experienced developer to assist with an important project. I need a development of an automated trading bot for NinjaTrader, utilizing a 4 SMA (Simple Moving Average) crossing strategy, with additional custom diversions for trade entries. The bot needs to be based on a strategy involving the crossing of four different SMAs. The exact periods for these SMAs and the conditions for
I need someone that can make expert advisor for backtesting purpose. The input file is History trade report export file from MQl5 the expert advisor should open position the exact time of open trade on the report. The same as the close time
So i have copier EA. The idea is the EA will triggered through manual OP by user via mobile or whatever platform. Let's say 0.01 lot to trigger it. After the EA takes master's position, the EA will be standby mode. If the master take more OP, the EA still not take the master's position (OP) until the user input manually once again via mobile for another 0.01 lot. Since this is a MT4 EA, Whenever user want to close
Hello, send robot models with a solid strategy (to trade forex), I want to use it to make money for the week. It is important that you present me with your profitability graph and a test. I also want to hire him for future jobs
I am looking to develop an automated trading bot based on a strategy involving the crossing of four Simple Moving Averages (SMA). The bot should be capable of entering trades based on this strategy. Additionally, I would like to incorporate some custom diversions tailored for NinjaTrader
Seeking an experienced MQL5 developer to create a sophisticated Expert Advisor focused on harmonic pattern trading . The EA will be designed to identify and trade based on popular harmonic patterns in the forex market. Entry and Exit Logic: Develop smart entry and exit rules based on pattern completions and price action confirmations. Risk Management: Incorporate adjustable risk-per-trade settings and position sizing
preciso de um robô com duas médias móveis, uma exponencial high e uma exponencial low. preciso também ter a opção de utilizar e todos os tempos gráficos e alterar os parâmetros das médias. entrada de compra será feita quando um candle de alta romper e fechar a cima da média high e fechará a posição quando um candle de baixa romper e fechar a baixo da média low. a venda será feita quando o candle de baixa romper e
Description - An expert advisor(s), placing sell trades in EUR/USD, based on the close price of the previous two candles, as shown in the figure below. The trades would be made in the 5 minute, 1 hour, and 1 day timeframes. In the 5 minute and 1 hour timeframes the market orders would be placed at the start of a new candle, at specific times EST. The order would be cancelled at the close of that candle, i.e after 5

Información sobre el proyecto

Presupuesto
10 - 999 USD
Para el ejecutor
9 - 899.1 USD
Plazo límite de ejecución
de 1 a 10 día(s)