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

MQL4 Эксперты

Работа завершена

Время выполнения 20 дней
Отзыв от исполнителя
Thank You! Great Client
Отзыв от заказчика
Great to work with

Техническое задание

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);
}

Откликнулись

1
Разработчик 1
Оценка
(221)
Проекты
369
66%
Арбитраж
10
50% / 0%
Просрочено
46
12%
Свободен
2
Разработчик 2
Оценка
(787)
Проекты
1354
72%
Арбитраж
110
27% / 48%
Просрочено
340
25%
Работает
3
Разработчик 3
Оценка
(219)
Проекты
370
42%
Арбитраж
145
17% / 41%
Просрочено
124
34%
Свободен
4
Разработчик 4
Оценка
(878)
Проекты
1390
67%
Арбитраж
117
32% / 42%
Просрочено
215
15%
Свободен
5
Разработчик 5
Оценка
(1848)
Проекты
3448
88%
Арбитраж
73
40% / 15%
Просрочено
265
8%
Свободен
6
Разработчик 6
Оценка
(584)
Проекты
913
46%
Арбитраж
31
39% / 29%
Просрочено
93
10%
Работает
7
Разработчик 7
Оценка
(2377)
Проекты
2987
65%
Арбитраж
76
47% / 14%
Просрочено
340
11%
Работает
8
Разработчик 8
Оценка
(2050)
Проекты
2601
62%
Арбитраж
113
44% / 26%
Просрочено
417
16%
Работает
9
Разработчик 9
Оценка
(3)
Проекты
8
13%
Арбитраж
10
10% / 70%
Просрочено
2
25%
Свободен
10
Разработчик 10
Оценка
(30)
Проекты
93
49%
Арбитраж
18
56% / 17%
Просрочено
38
41%
Свободен
Похожие заказы
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
MLQ4 Order: New EA Title: I need a Robot that can trade using price action and candle sticks formation + using 3 indicators: 1) RSI Ob Os_Arrow+Alerts EA (I will provide source code) 2) RSI Indicator (STANDARD) 2) A New ATR Zones indicator. I want you to create this new ATR Zones Indicator(I will provide the setting) Budget for project: US$80 - $100 Requirements of Trading Robot: 1) I want to Create a New ATR Zones

Информация о проекте

Бюджет
200 - 300 USD
Исполнителю
180 - 270 USD