I need to find a very good developer who can help me complete the EA quickly.

MQL4 Experts Scripts

Trabalho concluído

Tempo de execução 216 dias

Termos de Referência

I need MT4EA and MT5EA

Each function name and symbol of EA
Each function name:
1) Name_Steps
2) Direction_Steps
3) Lot_Steps
4) Points_Steps
5) TP_Steps
6) Goto_Steps

Elements of the symbol:
1) ;
2) &
3) /

Elements of Direction_Steps:
1) buy
2) sell
3) buy#
4) sell#
5) buy#r
6) sell#r

Input interface within MQL programming:
Name_Steps=A;B;C;D;E;F
Direction_Steps=buy;sell;buy#;sell#;buy#&sell#;buy/sell
Lot_Steps=0.01;0.02;0.01;0.03;0.02&0.01;0.03/0.02
Points_Steps=110;-55;30;50;80&80;90/-110
TP_Steps=90;80;66;44;45;85/84
Goto_Steps=C;E;D;E;A;B/F

Note: The input value is not limited to the number of characters, which means that as many steps as I input, the EA can do as many steps as possible, and is not limited by the number of characters. This EA is a combination of multiple changes.

Example 1 Name_Steps=1;2;3;4;5;6;7;8;9;10;11;12;13;14;15;16;17;18……
Direction_Steps=buy;sell;buy#;sell#;buy#&sell#;buy/sell;buy;sell;buy#;sell#;buy#&sell#;buy/sell;buy;sell;buy#;sell#;buy#&sell#;buy/sell……
Lot_Steps=0.01;0.02;0.01;0.03;0.02&0.01;0.03/0.02;0.01;0.02;0.01;0.03;0.02&0.01;0.03/0.02;0.01;0.02;0.01;0.03;0.02&0.01;0.03/0.02……
Points_Steps=110;-55;30;50;80&80;90/-110;110;-55;30;50;80&80;90/-110;110;-55;30;50;80&80;90/-110……
TP_Steps=90;80;66;44;45;85/84;90;80;66;44;45;85/84;90;80;66;44;45;85/84……
Goto_Steps=3;4;2;5;1; 3/5;6;4;5;7;1;4/6;14;4;17;2;1; 3/5……

Description of each symbol:
1) ;
For Name_Steps, Direction_Steps, lot_Steps, Points_Steps, TP_Steps, Goto_Steps input, this symbol indicates the separation of each step

2) &
Used for Direction_Steps, lot_Steps, Points_Steps, TP_Steps input, this symbol indicates that there are 2 or more conditions in a step that need to be met, and it also indicates that there are 2 or more orders in a step.

3) /
Used for Name_Steps, Direction_Steps, lot_Steps, Points_Steps, TP_Steps, Goto_Steps input, this symbol indicates that there are multiple conditions in a step, only one condition needs to be met, it also means that there are multiple choices in a step, it only chooses one.

Description of each function:
Name_Steps
Name_Steps is the mark of Goto_Steps, the purpose is to let Goto_Steps know which Name_Steps to go to next. For example, Goto_Steps=AB01, the next step will go to Name_Steps=AB01. For example, Goto_Steps=3, the next step will go to Name_Steps=3. For example, Goto_Steps=asa , the next step will go to Name_Steps=asa.

Direction_Steps elements: 1. sell 2. buy 3. sell# 4. buy# 5. sell#r 6.buy#r
There are 6 types of Direction_Steps elements

1. sell
sell mean that open sell order, if it has been opened, then close the order, no need to open another order. For example, open at $1680, make a profit at $1685, and then return to $1680, it will not open until the transaction is initialized. The TP of sell is All orders are calculated., please see case 3 of transaction example 1.
The functions of sell and buy are the same, the only difference is that the direction is reversed. The detailed explanation is that sell is the direction of falling, and buy is the direction of rising.

Transaction Example 1:
Input interface in MQL programming:
Name_Steps=A;B;C
Direction_Steps=buy;sell#&buy#;sell
Lot_Steps=0.02;0.01&0.01;0.04
Points_Steps=0;-150&-100;-200
TP_Steps=80;150&100;40
Goto_Steps=B;C

To make "Input interface in MQL programming" easier to explain, I split it into a grid.



Explanation:

When the EA is opened, the A order (buy order at $1.12300, 0.02 lot) is opened immediately, and the TP of the A order is set to 80. If the price drops by 100 points, the B order (buy order at $1.12200, lot0.01) is opened, and the order TP is set to 100 .If the price drops by 150 points, the B order will be opened (sell order at $1.12150, lot0.01). When both orders of the B order are opened, the C order will be opened. If the price falls by 200 points, the C order will be opened. (sell order at $1.11950, lot0.04), C order TP is set to 40.


Case 1

Assuming that there is currently 1 order, according to the above settings, the 1st order is 0.02 lot buy in $1.12300, TP=80, TP is $1.12380. If the profit is made, the Expert Advisor will be initialized.


Case 2

Suppose there are currently 3 orders, according to the above settings, A order is 0.02 lot buy in $1.12300, B order 1 is 0.01 lot sell# in $1.12150, B order 2 is 0.01 lot buy# in $1.12200.

There will be 4 TP situations.

Case 2.1

If the price reaches $1.12000, only the B order 1 of 0.01 lot sell# will make a profit. If it returns to $1.12150 and then open the B order 1 of 0.01 lot sell#, if the price is $1.12000, only the B order 1 of 0.01 lot sell# will make a profit.

Case 2.2

After that, if the price keeps going back and forth between 1.12000 and 1.12150, open B order 1 of 0.01 sell# for many times, and continue to make profits.

Case 2.3

If the price is 1.12300, 0.01 lot buy# B order 2 will make a profit. If it keeps going back and forth between 1.12200 and 1.12300, the B order 1 of 0.01 lot buy# will continue to profit.

Case 2.4

If the price reaches 1.12610, all orders will be closed, because TP_Steps1=80, please see the calculation method below

buy#r and sell#r do not count in buy/sell direction of lot

buy/sell direction of lot = 0.02

(TP price- stepA buy pirce)*stepA lot*100000+(stepB sell# price-TP price)*stepB lot*100000 = buy/sell direction of lot * pip

(1.12610-1.12300)*0.02*100000+(1.12150-1.12610)*0.01= 0.02*80


Case 3

If the price reaches 1.10960, all orders will be closed, because TP_Steps1=40, please see the calculation method below

buy#r and sell#r do not count in buy/sell direction of lot

buy#r and sell#r do not count in buy/sell direction of lot

buy/sell direction of lot = sell - buy = 0.04 - 0.02 = 0.02

(TP price- step1 buy price)*step1 lot*100000+(TP price- step2 buy# price)*step2 lot*100000+(step3 sell price- TP price)*step3 lot*100000 = buy/sell direction of lot * pip

(1.10960-1.12300)*0.02*100000+(1.10960-1.12200)*0.01+(1.11950-1.10960)*0.04=(0.04-0.01-0.02)*40



2. buy

buy mean that open buy order, if it has been opened, then close the order, no need to open another order. For example, if you open at $1680, make a profit at $1685, and then return to $1680, it will not open until the transaction is initialized. The TP of buy is For all order calculations, please refer to Case 1 of Transaction Example 1 and Case 3 of Transaction Example 1.


3. sell#

sell# mean that open sell order, if it has been opened, then close the order, if it returns to the price, it will open again, for example, open at $1680, make a profit at $1685, and then return to $1680 to open again, and repeat this action , until the transaction is initialized. The TP of sell# is calculated per order, please refer to cases 2.1 to 2.2 of transaction example 1.


4. buy#

buy# means that open sell order, if it has been opened, then close the order, if it returns to the price, then open it again, for example, open at $1680, make a profit at $1685, and then open again at $1680, repeating this action , until the transaction is initialized. The TP of buy# is calculated for each order, please see Case 2.3 of Transaction Example 1


5. sell#r

sell#r mean that open sell order, if it has been opened, then close the order, if it comes back to the price, then open it again, for example, open it at $1680, make a profit at $1685, then open it again at $1680, repeating this Action, until all trade profit conditions are met, all orders are closed, and then the trade is reset. Please see the case 2.2, 2.4, 2.5 of the transaction example 2


Transaction Example 2:

Input interface in MQL programming:

Name_Steps=1;2;3

Direction_Steps=buy;sell#r&buy#r;sell

Lot_Steps=0.02;0.01&0.01;0.04

Points_Steps=0;-150&-100;-200

TP_Steps=80;150&100;40

Goto_Steps=2;3


To make "Input interface in MQL programming" easier to explain, I split it into a grid.



Case 1

Assuming that there is currently 1 order, according to the above settings, the 1st order is 0.02 lot buy in $1.12300, TP=80, TP is $1.12380. If the profit is made, the Expert Advisor will be initialized.


Case 2

Suppose there are currently 3 orders, according to the above settings, 1 order is 0.02 lot buy in $1.12300, 2 order 1 is 0.01 lot sell#r in $1.12150, 2 order 2 is 0.01 lot buy#r in $1.12200.

If the price reaches $1.12000, only 0.01 sell#r is profitable. If it goes back to $1.12150 and then opens again for 0.01 sell#r, if the price is $1.12000 after that, only 0.01 sell#r is profitable.

If it keeps going back and forth between 1.12000 and 1.12150, open 0.01 sell#r multiple times and continue to make profits until the profit conditions of all orders are met.

Example of a take profit condition that meets all orders

For example, the account currently has 3 orders, the first one is 0.02 buy at $1.12300, TP=80, the second one is 0.01 buy#r at 1.12200, TP=100, the third one is 0.01 sell#r at 1.12150, TP= 150

If the price is at $1.12000, 0.02 buy $1.12300 floating equity is -$6, 0.01 buy#r $1.12200 floating equity is -$2, 0.01 sell#r $1.12150 profit is $1.5,

buy#r and sell#r do not count in buy/sell direction of lot

Profit Condition 1 for all orders: buy/sell direction of lot * pip=0.02*80=1.6

Profit Condition 2 for all orders: -$6-$2+$1.5=-$6.5

(Profit condition 2 for all orders+Profit condition 1 for orders)/1.5=(-6.5-1.6)/1.5=-5.4

Calculating the answer is 5.4 times. And rounding up 1 is 6 times. Why 6? If 5.01 to 5.99 is +1, the answer is 5+1. If 4.01 to 4.99 is 0, the answer is 5, not rounding.

That is, the profit condition of all orders is satisfied when sell#r takes profit 6 times back and forth, after which all orders are closed and the transaction is reset.


Case 3

If it is 1.12300, 0.01 buy# will make a profit. If it keeps going back and forth between 1.12200 and 1.12300, it will continue to make profits by 0.01 buy#r until the profit conditions of all orders are met.

Example of a take profit condition that meets all orders

For example, there are currently 3 orders in the account according to the above settings, namely 1 order is 0.02 buy in $1.12300 TP=80, 2 order 1 is 0.01 buy#r in $1.12200 TP=100, 2 order 2 is 0.01 sell#r in $1.12150 TP =150,

If the price is at $1.12300, 1 order floating equity is $0, 2 order 1 profit is $1, 2 order 2 floating equity is -$1.5

buy#r and sell#r do not count in buy/sell direction of lot

Profit condition 1 for all orders is buy/sell direction of lot * pip=0.02*80=1.6

All orders take profit condition 2 is $0+$1-$1.5=-$0.5

(Profit condition 2 for all orders + Profit condition 1 for orders)/1=(-0.5-1.6)/1=-2.1

Calculated the answer is 3 times. And advancing 1 is 3 times. Why 3? If 2.01 to 2.99 is 2+1. If 1.01 to 1.99 is 1+1, not rounded up.

That is, buy#r takes profit 3 times back and forth to meet the profit conditions of all orders, after which all orders are closed and the transaction is reset.


Case 4

If the price is 1.12300, 0.01 buy# will make a profit. If the price is constantly going back and forth between 1.12000 and 1.12300, open 0.01 lot buy#r and 0.01 lot sell#r multiple times, and the two orders will be profitable many times until all orders are satisfied. profit conditions.

Example of a take profit condition that meets all orders

For example, there are currently 3 orders in the account, the first order is 0.02 buy $1.12300 TP=80, the second order is 0.01 buy#r $1.12200 TP=100 The third order is 0.01 sell#r $1.12150 TP=150,


For your convenience, I have arranged each grid of the chart, each grid represents the process of each order transaction, please read from left to right


buy#r and sell#r do not count in buy/sell direction of lot

Profit condition 1 for all orders: buy/sell direction of lot * pip=0.02*80=1.6

Profit Target = +1.6

3.5-0.5=3

3 is greater than 1.6, all orders are closed and re-initialized


Case 5

Suppose there are currently 4 orders, according to the above settings, 1 order is 0.02 lot buy in $1.12300, 2 order 1 is 0.01 lot sell#r in $1.12150, 2 order 2 is 0.01 lot buy#r in $1.12200, 3 order is 0.04 lot sell in $1.11950

For example, at 1.12000, 0.01 sell#r takes profit, then at 1.11950, 0.04 sell#r is opened.

If it rises back and forth between 1.12300 and 1.12200, it is buy#r and sell#r multiple profits.


For your convenience, I have arranged each grid of the chart, each grid represents the process of each order transaction, please read from left to right


buy#r and sell#r do not count in buy/sell direction of lot

Profit condition 1 for all orders is buy/sell direction of lot * pip=0.02*40=0.8

Profit Target = +0.8

8.5-6.5=2

2 is greater than 0.8, all orders are withdrawn and re-initialized


4. buy#

buy# mean that open sell order, if it has been opened, then close the order, if it returns to the price, it will be opened again, for example, if it is opened at $1680, it will be profitable at $1685, and then it will be opened again at $1680, and this action will be repeated. , until the transaction is initialized. And the TP of buy# is calculated for each order, please see the case 2.3, 2.4, 2.5 of the transaction example 2



Respondido

1
Desenvolvedor 1
Classificação
(155)
Projetos
224
33%
Arbitragem
27
26% / 26%
Expirado
23
10%
Livre
2
Desenvolvedor 2
Classificação
(8)
Projetos
18
17%
Arbitragem
3
67% / 0%
Expirado
0
Livre
3
Desenvolvedor 3
Classificação
(298)
Projetos
443
64%
Arbitragem
5
40% / 0%
Expirado
4
1%
Trabalhando
4
Desenvolvedor 4
Classificação
(256)
Projetos
415
38%
Arbitragem
86
44% / 19%
Expirado
70
17%
Ocupado
Pedidos semelhantes
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
I am looking forward to automate my trading strategy where I use renko bars on Tradingview. I really want to use unirenkos too, but unfortunately I couldn't figure out how to use ninjatrader on my MacBook and Tradingview does not offer unirenkos. As far as I see from your offered services you are very familiar with ninjatrader. I wanted to ask you if you could code me an Indicator for unirenkos for Tradingview so I
Hello The EA will work on particular zone choose by the user and can mark it on any TF and with some rules can open trades and mange the trade by some unique rules. the EA need to check the difference by RSI as well and with some extra rules . developer should have good attitude and good communication (englsih) with high performence and knowledge with coding EA
Hello, I want to create an EA that can be able to take and optimise trade bids using the trend tracker concept I have developed. The tracker will monitor 2 lines to determine the trend of the market and afterwards take bids towards the correct direction. It will also be able to use a distance between the bids for the direction of the trend and plan a reverse bid when the price of the extreme doesn’t change again. The
Gradient boosting and L2 100 - 200 USD
I am looking for a well experienced programmer to put/implement a gradient boosting algorithm and an L2 to reduce overfitting in my ea which l already have which uses indicators . If you are experienced please adhere
Hello, I'm looking for a developer for repair calendar in EA MT4/MT5 (News Filter - https://ec.forexprostools.com ) for all windows servers. Note: EA MT4/MT5 works with calendar on PC Win 10, 11 but not on all windows servers. I have the source code and will post within the comments section for review. If you are able to do this and quality. Please apply. Thanks
Create mt4 ea 50+ USD
To convert the provided MT4 indicator script into an Expert Advisor (EA) and implement prompt functionality for user input, we need to modify the code to handle external parameters and provide a user-friendly interface. Below is the EA code that incorporates prompts for user inputs
SCALP MARTINCALE SPY TIMEFRAME 1MIN CANDLE - SHORT SIDE ONLY 1-SET RISK : A IS A VARIABLE (HOW MUCH $) 2-SET ATR(3) : SET THE TIME AT WHICH THE ATR SHOULD BE TAKEN, IF SET 933AM THEN THE ATR OF THE 1MIN CANDLE AT 933AM CANDLE WILL BE USED (ROUND AT 0.25 UP OR DOWN) *USE NEW YORK TIME 3-SET MAX NUMBER OF ENTRY : B IS A VARIABLE 4-SET RSI(14) / C IS A VARIABLE, IF RSI(14) > C = ORDERS OPEN 5-IF RSI(14) > C IS TRIGGERED
I WRITE a code i want to conect this for automatic trading through vps .and als advanced features for this code .i attached afile please watch .and give me perfect ea

Informações sobre o projeto

Orçamento
30+ USD
Desenvolvedor
27 USD