Create Buy Limit Orders

MQL4 전문가

명시

EA Name: Create Buy Limit Orders

Inputs:
1) CreateBuyOrder = Yes / No --->If it is Yes, the EA will create Buy limit orders
2) Stopout Margin Level = X% (300%) ---> Must close all the open limit orders if margin level reaches X% & Should not create any new Limit order (Stop the EA and not create any Limit Orders)
3) RestartMarginLevel = Y% (500%) --- Restart the process of creating Limit orders once the margin level is greater than Y%

4) Lot size = ___ (eg. 0.01)     ---> Create Limit orders at this Lot Size
5) OrderDistance = X USD (eg. 25 USD) -----Create Limit orders at this OrderDistance - All prices are in terms currency USD & not pips
6) TakeProfit = N USD (eg. 20 USD) --  (When limit orders are created, they should have this TP. Eg. Order opened at $750, should have TP as 770)
7) StopLoss = M USD (eg. 10 USD) -- (When limit orders are created, they should have this SL Eg. Order opened at $750, should have SL as 740)
8) Limit orders Qty (Q) = ___ (Number of Buy Limit Orders to Maintain at any time)
9) Create_After_Before = ___ (eg. 6$)


Process:
Step1 Clear open limit orders: At the start of the EA ---> Close all limit orders created by this EA in the past

Step2 - Order creation : Create (Q) number of Buy limit orders at the given "OrderDistance" below the current price. Use the following formula to create the buy limit orders for the first time.

Create buylimit orders at 950,925,900,875,850,825,800,775,750,725

(Assume Q=10)
First Buy limit order to create is ---> Current Price-Current Price mod OrderDistance - OrderDistance = 995-995 mod 25-25 =950
Second Buy limit order to create is 950-25 = 925
Third  Buy limit order to create is 925-25 = 900
10th Buy limit order to create = 725


2) At any point in time ensure that there are Q number of buy limit orders at any point of time. For this need to create 1 more highest limit order when price moves up OR need to create the lowest limit order when price moved down.

(a) Example - When price goes to 1006 (ie. 1000 + Create_After_Before), then need to create a buy limit order of 975
ie. 1006-1006mod 25-25 =975
AND - Delete the least price order of 725


(b) When price goes to 944(ie. 950-Create_After_Before), only 9 buy orders will be remaining 
(since Buy limit order of $950 has already converted to buy order just a little while ago)

Hence, should create a last 1 more buy limit order of $700 and so on.

응답함

1
개발자 1
등급
(878)
프로젝트
1390
67%
중재
117
32% / 42%
기한 초과
215
15%
무료
2
개발자 2
등급
(40)
프로젝트
60
8%
중재
12
58% / 42%
기한 초과
1
2%
무료
3
개발자 3
등급
(466)
프로젝트
494
52%
중재
10
60% / 20%
기한 초과
3
1%
무료
4
개발자 4
등급
(374)
프로젝트
396
31%
중재
61
20% / 67%
기한 초과
49
12%
로드됨
5
개발자 5
등급
(195)
프로젝트
317
35%
중재
64
13% / 56%
기한 초과
82
26%
무료
6
개발자 6
등급
(7)
프로젝트
17
41%
중재
3
0% / 100%
기한 초과
3
18%
무료
7
개발자 7
등급
(226)
프로젝트
402
34%
중재
52
37% / 40%
기한 초과
145
36%
로드됨
8
개발자 8
등급
(42)
프로젝트
47
30%
중재
12
17% / 75%
기한 초과
6
13%
무료
9
개발자 9
등급
(555)
프로젝트
922
48%
중재
300
59% / 25%
기한 초과
123
13%
로드됨
10
개발자 10
등급
(96)
프로젝트
142
75%
중재
0
기한 초과
2
1%
무료
11
개발자 11
등급
(19)
프로젝트
22
77%
중재
1
0% / 100%
기한 초과
13
59%
무료
12
개발자 12
등급
(66)
프로젝트
143
34%
중재
11
9% / 55%
기한 초과
26
18%
작업중
비슷한 주문
Developer !! i need an robot that is going to analyze the market\pair chart before opening trades ,example if the robot is place on the chart of GBPUSD on H1 time frame the robot should analyze the direction of a market ,then open after knowing the direction,if the can possible make it analyze even on lower time then that would be fantastic. remember the is going to open on its own the trades, thank you NB;i don't
Respected Madam I need an EA in Mql5 which can Buy at certain Increment of points like 100 then 50 then 50 then 25 then 25 then 25 then 25. Possibility of Grid increase. Buys at certain fixed level if the the Price drops like 100 points down then again 100 points down then again 100 points down like this in a grid system, Grid size I will declare. Grid order systems with stop loss and Multiple Reorders if the Stop
Hi, I need an simple MT5 EA which trades based on full body candles at specific trading time. Start Hour Start Minute End Hour End Minute Min full candle body size in points % real body of candle size to count the candle as full body candle Enter buy on bearish full body candle Enter sell on bullish full body candle Enter on same candle if the real body size has reached x points and the % of real body to candle
本人现有一个网格EA,内有马丁加仓平仓,需要升级,加入对冲功能和其他功能.(其他细节后谈) 1 . 網格繫統:可選:YES/NO. 如果:YES,設置:網格間隔,網格層數, 2 . 開倉:條件開倉,可選:YES/NO.(目前默認爲NO) 分爲市價開倉/STOP ORDER/ LIMIT ORDER, 3 . 加倉:分爲:固定手數,如:0 . 03,或末單累加:0 . 01,或:末單倍數如:1 . 5倍.多單和空單的加倉方法可以不同設置. 4 . 移動止盈.(單獨移動,多/空方整體點數移動/或金額移動) 5 . 平倉包括: A.多方/空方止盈線,和多方/空方止損線(可以設置三條價格:每條選擇:平倉 1/3,1/2,或全部) B.單獨止盈/止損 (多方和空方可以設置不同的,)盈利點數或金額 整體止盈/止損.(多方和空方可以設置不同的,)
HFT needed 100+ USD
Need hft ea which working properly as well as demo accounts and live accounts with good daily returns as well as monthly returns need experinced programers to show thier most profible ea programers with more than 100 projects done will be shortlisted . And developer should provide its demo version for test before going to further steps
Hey, I trust my messages finds you well, I am in need of an expert seasoned forex trader that also skilled in programming MT4 EA, please read below I have some trading ideas in mind, this is why I mentioned that I need a forex trader who can help me have an expert look to those ideas I will be sharing in comment section then advised on the needed suitable ideas in addition to what I have alreadly have,I mean I need
Trading Gold , tap in & join the ride of the trading platform and watch us grow as the days go on , we're looking forward to have you on board the journey
EA debug 30+ USD
I have an EA bot CODE intend to be use on the MT5 platform, and all I need is a debug expert with full knowledge of what they are doing. The Skillset i need from you as a debugger are: 1. Trading Robot/Robot Debugging 2. Strategy Optimization 3. News Filter I will send you the codes and hope to have the debugged codes in less than 24 hours after we have discussed and come to an agreement
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
Hello expert developer I'm here to write to expert developer that I need to fix my indicator repainting and I need the expert developer that can solve the repainting issue immediately and the project is just fixing the repainting only nothing else ... It shouldn't be more than the time I'm looking for it to be done thanks

프로젝트 정보

예산
30 - 50 USD
개발자에게
27 - 45 USD