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

仕事が完了した

実行時間216 日

指定

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



応答済み

1
開発者 1
評価
(155)
プロジェクト
224
33%
仲裁
27
26% / 26%
期限切れ
23
10%
2
開発者 2
評価
(8)
プロジェクト
18
17%
仲裁
3
67% / 0%
期限切れ
0
3
開発者 3
評価
(300)
プロジェクト
450
65%
仲裁
5
40% / 0%
期限切れ
4
1%
4
開発者 4
評価
(261)
プロジェクト
425
38%
仲裁
86
44% / 19%
期限切れ
71
17%
取り込み中
類似した注文
Zzz 30+ USD
// กำหนดค่าตัวแปรพื้นฐาน input double lotSize = 0.1; // ขนาดล็อตที่ต้องการ input int takeProfit = 50; // ระยะ Take Profit (จุด) input int stopLoss = 50; // ระยะ Stop Loss (จุด) input int magicNumber = 123456; // หมายเลข Magic Number input int smaPeriod = 14; // ช่วงเวลา Simple Moving Average (SMA) // เวลาที่ออเดอร์ล่าสุดถูกเปิด datetime lastOrderTime = 0; // ฟังก์ชั่นหลักของ EA void OnTick() { //
Mobile robot 50 - 100 USD
I want a profitable scalping EA robot for mt5 and mobile phones (licence key should be provided).the video link attached below indicates how the EA robot should operate it.it analyses the market before taking trades and it trades candle to candle .also coding samples are provided on the video .it should be applicable to all timeframes.it should trade indices(Nas100,US30,S&p500,GER30,)
I use the translator I hope to make myself understood. I'm looking for a cyclical indicator. mt5. I attach videos to understand how it works. to be inserted at any point of the graph. It is possible to change the color and thickness of the line
This EA must have the following functions together: BE: place BE when the price reach a certain gain in PIPS and you can choose the offset too, so, for example it activates after 10 pips with 1 pip of offset so you can have profit with BE too Auto SL and TP Can manage the trades made by phone when MT5 is open in the PC or VPS Trailing stop (step by step): I can decide at what number of pips the trailing stop get
This is a strategy based on crossing two trend indicators on the second timeframe (1s, for example). We work not only with the market but with the limit orders as well (robot must "read" an order book). Read the whole instruction please for more details. Speak Russian, English
Martingale EA for MT5 30 - 100 USD
Criteria: Only one trade at a time. Cannot open another trade if one is running Trade on EURUSD only, once job is completed I will be happy to schedule more for other pairs You choose entry strategy and criteria win rate must be above 50% in long term backtest of EURUSD Every trade has got TP and SL Trades to last about a day, few trades a week, at least 10 pips gain per trade, so that it can be launched on normal
I have a indicator, mql file. The signals are seen below on a EURNZD H1 chart. Very important to get accurate entries. The signal to trade is the first tic after the the indicator signal paints. I've tried to demonstrate that below. Other than that the EA will have a lot size escalation, an on-screen pip counter, a button to stop taking new trades, SL/TP, and magic number. I would like the indicator to be within the
I would like to create an EA based on the Shved Supply and Demand indicator. you can find the Shved Supply and Demand v1.7 indicator in the following link https://www.mql5.com/en/code/29395 NB: Checks the trading robot must pass before publication in the Market ( https://www.mql5.com/en/articles/2555 ) MQ5 file to be provided
Im looking for an coder to code an EA: Trade management 1. opening trades according to the indicator 2. trades settings to choose from like: open all trades according to the signal open only trade 1,2,3 or 4 % per trade ( example 50/30/20 of the lot settings, with 4 trades it would be for example 50/30/10/10) 3. SL/Trailing settings: Move SL to entry after hitting TP1/TP2 or TP3 moving SL by % keep the original SL
Hi I'm looking to have 2 of my pinescript strategies converted to MQL5 and was wondering if you could first give me a quote for the more simple strategy and then for both the simple and complex strategy together. The simple strategy is a MACD crossover type thing that uses a special EMA script that filters out some ranging price action and also fractal candles for the stop loss. The second strategy is market

プロジェクト情報

予算
30+ USD
開発者用
27 USD