I need a simple Expert Advisor that uses a custom indicator, The pz harmonic trading indicator to be specific.

MQL4 Experts

Trabalho concluído

Tempo de execução 20 dias
Comentário do desenvolvedor
Thank You! Great Client
Comentário do cliente
Great to work with

Termos de Referência

This is the link to the indicator http://www.pointzero-trading.com/Products/view/PZHarmonicTrading

and this is some of the code the site provides for this, Contact me asap thanks.


In order to build your expert advisor, you can read data from the indicator using the iCustom() function as exemplified below. The indicator has one extra buffer which only purpose is to store trading signals as constants: this is the only buffer you need to read from. Copy and paste the code below into your EA, and replace the indicator name of the iCustom() call with your own.


//---- Step 1: Define constants in your EA
#define OP_BUY_BAT            1
#define OP_SELL_BAT           2
#define OP_BUY_GARTLEY        3
#define OP_SELL_GARTLEY       4
#define OP_BUY_CRAB           5
#define OP_SELL_CRAB          6
#define OP_BUY_BUTTERFLY      7
#define OP_SELL_BUTTERFLY     8
#define OP_BUY_SHARK          9
#define OP_SELL_SHARK         10
#define OP_BUY_CYPHER         11
#define OP_SELL_CYPHER        12
#define OP_BUY_ALTERNATE_BAT  13
#define OP_SELL_ALTERNATE_BAT 14
#define OP_BUY_DEEP_CRAB      15
#define OP_SELL_DEEP_CRAB     16
#define OP_BUY_WHITE_SWAN     17
#define OP_SELL_WHITE_SWAN    18
#define OP_BUY_BLACK_SWAN     19
#define OP_SELL_BLACK_SWAN    20
#define OP_BUY_MAX_BAT        21
#define OP_SELL_MAX_BAT       25
#define OP_BUY_MAX_GARTLEY    26
#define OP_SELL_MAX_GARTLEY   27
#define OP_BUY_MAX_BUTTERFLY  28
#define OP_SELL_MAX_BUTTERFLY 29
#define OP_BUY_A_CRAB         30
#define OP_SELL_A_CRAB        31
#define OP_BUY_A_BUTTERFLY    32
#define OP_SELL_A_BUTTERFLY   33
#define OP_BUY_A_BAT          34
#define OP_SELL_A_BAT         35
#define OP_BUY_A_GARTLEY      36
#define OP_SELL_A_GARTLEY     37
#define OP_BUY_SEA_PONY       38
#define OP_SELL_SEA_PONEY     39
#define OP_BUY_ALT_SHARK      40
#define OP_SELL_ALT_SHARK     41
//---- Step 2: Read values from the signal buffer
int start()
{
// Read pattern and breakout buffer
double pattern  = iCustom(Symbol(), Period(), "PZ_HarmonicTrading_LICENSE", 0, 1);
double breakout = iCustom(Symbol(), Period(), "PZ_HarmonicTrading_LICENSE", 1, 1);
// Do something
if(pattern == OP_BUY_BAT)        { /* Your code for bullish bat pattern */ }
if(pattern == OP_SELL_BAT)       { /* Your code for bearish bat pattern */ }
if(pattern == OP_BUY_GARTLEY)    { /* Your code for bullish gartley pattern */ }
if(pattern == OP_SELL_GARTLEY)   { /* Your code for bearish gartley pattern */ }
if(pattern == OP_BUY_CRAB)       { /* Your code for bullish crab pattern */ }
if(pattern == OP_SELL_CRAB)      { /* Your code for bearish crab pattern */ }
if(pattern == OP_BUY_BUTTERFLY)  { /* Your code for bullish butterfly pattern */ }
if(pattern == OP_SELL_BUTTERFLY) { /* Your code for bearish butterfly pattern */ }
if(pattern == OP_BUY_SHARK)      { /* Your code for bullish shark pattern */ }
if(pattern == OP_SELL_SHARK)     { /* Your code for bearish shark pattern */ }
if(pattern == OP_BUY_CYPHER)     { /* Your code for bullish cyhper pattern */ }
if(pattern == OP_SELL_CYPHER)    { /* Your code for bearish cypher pattern */ }
/* All other pattern constants above can be evaluated here too */
if(breakout == OP_BUY)           { /* Your code for bullish breakout (blue arrow) */}
if(breakout == OP_SELL)          { /* Your code for bearish breakout (red arrow) */}
if(pattern == EMPTY_VALUE && breakout == EMPTY_VALUE) { /* No pattern or breakout */}
// Exit
return(0);
}

Respondido

1
Desenvolvedor 1
Classificação
(221)
Projetos
369
66%
Arbitragem
10
50% / 0%
Expirado
46
12%
Livre
2
Desenvolvedor 2
Classificação
(787)
Projetos
1354
72%
Arbitragem
110
27% / 48%
Expirado
340
25%
Trabalhando
3
Desenvolvedor 3
Classificação
(219)
Projetos
370
42%
Arbitragem
145
17% / 41%
Expirado
124
34%
Livre
4
Desenvolvedor 4
Classificação
(878)
Projetos
1390
67%
Arbitragem
117
32% / 42%
Expirado
215
15%
Livre
5
Desenvolvedor 5
Classificação
(1848)
Projetos
3448
88%
Arbitragem
73
40% / 15%
Expirado
265
8%
Livre
6
Desenvolvedor 6
Classificação
(584)
Projetos
913
46%
Arbitragem
31
39% / 29%
Expirado
93
10%
Trabalhando
7
Desenvolvedor 7
Classificação
(2377)
Projetos
2987
65%
Arbitragem
76
47% / 14%
Expirado
340
11%
Trabalhando
8
Desenvolvedor 8
Classificação
(2050)
Projetos
2601
62%
Arbitragem
113
44% / 26%
Expirado
417
16%
Trabalhando
9
Desenvolvedor 9
Classificação
(3)
Projetos
8
13%
Arbitragem
10
10% / 70%
Expirado
2
25%
Livre
10
Desenvolvedor 10
Classificação
(30)
Projetos
93
49%
Arbitragem
18
56% / 17%
Expirado
38
41%
Livre
Pedidos semelhantes
I need an expert in the development of a fully automated trading robot For MetaTrader. The Trading Robot must be "Web based" so it can be accessed or used through a website, You can view a screenshot here; https://www.awesomescreenshot.com/image/48030918?key=79b0ff91455d862746e9b649341f4cdb Why do i need? Simple Enough, This is what i need from my Trading Robot EA. The Trading Robot can only be accessed through a
Maybe this indicator will make a good ea but the aggressive entry moves and conservative entry is stationary and target tp2 which will make it a 0.3:1 aggressive entry is around a 1:1 with Tp 2 I want conservative entry and do aggressive entry pls do that too with the option too switch in the settings I want sl tp and trailing stop fire filter and auto lots fixed lots I get
Hi, I would enlist bids to create an EA, based on the following steps 1. Session Time - the EA will only take a trade during the selected time window, Example 8.30pm to 11.00pm (GMT+8). The example is for a bulllish candle for Buys entry. Entry criteria 1 - A level for buys will be marked by drawing a horizontal line (Example GBPJPY 194.252 Green Line) Entry criteria 2 - A 15min or 30 min candle to close above the
Hello, I am looking for an expert MT4 MT5 Programmer to build an expert advisor that works perfectly for the two metatrader, I would like to work with an experieced full time coder who can be able to pay attention to details, I will be sharing my specifications regarding the development of this algorithm as expected in comment section, Kindly show up if you are the best fit thanks
I would like to calculate the deviations between the companies listed below with Meta Trader. Would you be interested? BETWEEN 01.00 AT NIGHT AND 00.00 OF THE NEXT DAY (FOR HOURS WHEN THE GOLD MARKET IS OPEN) *Instant comparison of prices of the same parities of different companies *Determination of deviation rates in downward or upward movements (average prices, prices below and above the average) *Detection of
Maybe this indicator will make a good ea but the aggressive entry moves and conservative entry is stationary and target tp2 which will make it a 0.3:1 aggressive entry is around a 1:1 with Tp 2 I want conservative entry and do aggressive entry pls do that too with the option too switch in the settings I want sl tp and trailing stop fire filter and auto lots fixed lots I get
The strategy is based on identifying overbought and oversold conditions across multiple timeframes. The primary indicator used is the stochastic indicator. Stochastic Settings: • %K period: 100 • %D period: 5 • Slowing: 4 •Price field : close/close For buying: • stochastic Signal line/Both Most be in the oversold zone (20 level of stochastic) on the H4, H1, 30m, 15m, 5m, and 1m timeframes. Final confirmation For a
Hello, I have an indicator on Trend View. I would like to convert it to a robot. The indicator is not very large, very simple, and works on a small time frame. Must be available Stop loss Setting goals Lot size time frame
3 Indicators from Trading View: Ghost Tangent Crossings [ChartPrime] SuperTrend [KivancOzbilgic] Trendline Breakouts With Targets [ChartPrime] Pair: XAUUSD - M15 If you can write code based on these 3 indicators, please confirm with me so I can send more detailed information about the trading order entry rules. Từ vựng Hán tự Dịch Đang tìm kiếm ... Tiếng Anh Từ điển JP
Fully automated with profitable setfiles. I will pass you funded challenges in few days. Included: FXIFY, FTMO, KORTANA FX, The5ers, etc. You name it You dont have to do anything, just contact me and ill do rest

Informações sobre o projeto

Orçamento
200 - 300 USD
Desenvolvedor
180 - 270 USD