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)
프로젝트
2986
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%
무료
비슷한 주문
i am currently in need of someone who can be able to help me out.i want my custom indicator to be non repainting and i also want the custom indicator to be able to send out all types of alerts...thank you
I want to develop an EA where trader will enter some preset order buy/sell (like pending order) on a specific pair with specific value. when the market touch the preset order line and close the andle above/below according to order buy/sell then EA execute the order. all preset/pending function will be handles from the dashboard similar picture like below; The dashboard must be good looking. additional details will
I need a skilled analyst to help me backtest and optimize my existing EA. I have already developed the EA with the help of another developer, I only need the best combination of settings. The EA should be optimized for maximum profit and minimal drawback
This job is basically between the Bridge Application Msi . and Expert Advisor . The programer connect the Application to VPS where EA is Given to users .. If we changed anything in application it's automatic changed to all users EA which users have. Complicated work but only a good programmer DM me
I would like to make a SMC EA for MT5 based on multi timeframes analyzing the price action. and make it more details with more user input added.'' source code needed'' First of all here's a video which helped me for this: https://www.youtube.com/watch?v=vEXji2ClXMc The ea should find a entry signal that based on the SMC concept below and each entry trigger can be turned on and off. Based on the Multi timeframe of
I need smart, professional, and fast programmer for doing this project quickly, that have experience in EA with minimum 300 projects finish and without arbitration, and have good review and reputation from their client Share your link review, if you not qualified, dont apply! I will bidding the programmer from experience, review, reputation, price, and days working My EA using Moving Average, Average True Range, and
Need a trading robot 30 - 50 USD
I have the source code for the robot I want to build, but I'd like to have another one that is unique to me and has different settings. If I give you the source code with all the settings, will you be able to recreate the robot for me with the changes? and if so, how much would you charge
Hey, having privilege to discuss my trading ideas with a skilled programmer will be the best, I wanted to build a well automated expert advisor that run perfectly on both MT4 and MT5, I would be glad to work with an expert who is able to turn ideas into a well automated mt4 mt5 trading robot, expert advisor EA in Metatrader 4 and 5, reach out if you can help me in achieving my trading target thanks
I need modifications done to my expert advisor so I can input the number of trades it should open at any point in time. A side EA that has that functionality and can be attached to existing EAs is also welcomed
Hello, I need a quote for developing a bot for my renko based trading system on ctrader platform and based on the attached specification your expertise is highly needed for this project Thanks

프로젝트 정보

예산
200 - 300 USD
개발자에게
180 - 270 USD