Create EA that combines VWAP Line, MACD and MACD No Lag

MQL4 Uzmanlar

İş tamamlandı

Tamamlanma süresi: 22 saat
Müşteri tarafından geri bildirim
Great job and quick turnaround!
Geliştirici tarafından geri bildirim
Kind and friendly customer Work with him is fast

Şartname

Hello,

I would like you to create EA executes a trade when the following three indicators agree:

1. Buy above VWAP line when Candlesticks cross and Sell below VWAP line when candlestick cross below the VWAP Line

a. It draws daily VWAP line with standard deviation lines, but you can also add weekly VWAP line .

b. VWAP line works on all timeframes

  c. VWAP line has the following standard deviation lines:  0.5   1   2   3.

d. Start drawing the VWAP Line from a specific time of the day.

e. Alert when one of the VWAP Line standard deviation is touched.

AND

2. 2nd it must confirm execution of trade using MACD Crossover strategy

a. MACD crossover as an 2nd entry indicator

i. Entry signal is when the MACD line crosses over the signal line in the direction of the trend.

ii. A bullish signal is present when the MACD line crosses ABOVE the signal line and is below the zero line. When the crossover takes place, EA must confirm upward trend by waiting for the      MACD line to cross over the zero line before opening a long position.

iii.  Likewise, a bearish signal is present when the MACD line crosses BELOW the signal line and is above the zero line. Once again, confirmation can be seen when the MACD line crosses  below the zero line.

AND

3. When confirmed by the MACD Zero Lag.

When the MACD zero lag line crosses over the signal: a buy signal can be generated.

When the MACD zero lag crosses under the signal line: a sell signal can be generated.

4. When all indicators agree a trade will be executed.

5. Lot Size Selection:  1/2

(a) Lots 1:  Manual Entry 0.01

(b) Lots 2:  % of balance

6. Using MQL4

7. Must include:

- Checks that will help to prevent a possible errors

-All of the algorithm "bottlenecks" should be exhaustively thought out and accurately processed

-The Expert Advisor should be able to restore its normal work after a temporary disconnection, reconnection to the account, or a reset of the client terminal.-

-If you can not set the pending or stop orders, they need to be tracked virtually, and when the price of their levels is reached, executed on the market price.

-If you can not open position on the market prices within N attempts, the maximum allowable slippage should be increased.

-At the triggering of a pending or stop order, by a level, not provided by the algorithm, and with slippage (eg, with a price gap), the levels of all of the dependent orders should be adjusted (and, perhaps, even their volumes).

-All functions that operate on the size of the deposit (for example, the calculation of the lot), should normally accept non-trade operations with a balance (balance or withdrawal).

-The Expert Advisor should work fine with different brokers, take into account the list of available instruments, their specifications, and other server settings (the maximum number of pending orders, the Stop Out levels, the opportunity to open the positions/orders in opposite directions (for MetaTrader 4 only), and so on)

8. Should work on all charts but optimized for GBPUSD



Yanıtlandı

1
Geliştirici 1
Derecelendirme
(169)
Projeler
204
30%
Arabuluculuk
25
40% / 44%
Süresi dolmuş
12
6%
Serbest
2
Geliştirici 2
Derecelendirme
(54)
Projeler
102
23%
Arabuluculuk
12
25% / 17%
Süresi dolmuş
13
13%
Serbest
3
Geliştirici 3
Derecelendirme
(568)
Projeler
641
41%
Arabuluculuk
25
48% / 36%
Süresi dolmuş
46
7%
Çalışıyor
4
Geliştirici 4
Derecelendirme
(77)
Projeler
244
74%
Arabuluculuk
7
100% / 0%
Süresi dolmuş
1
0%
Serbest
Yayınlandı: 1 makale
5
Geliştirici 5
Derecelendirme
(11)
Projeler
16
25%
Arabuluculuk
1
0% / 100%
Süresi dolmuş
1
6%
Serbest
Benzer siparişler
I am looking for an experienced MQL4 developer to create an Expert Advisor (EA) based on signals from a custom indicator. Requirements: 1. The EA must use a single custom indicator that draws buy and sell arrows directly on the chart. 2. When a buy arrow appears, the EA should wait until the current candle closes. If the arrow is still present after the candle closes, it should open a BUY trade. 3
Bhokhwe 30 - 200 USD
//+------------------------------------------------------------------+ //| ThreeBullEMA10EA | //| Strategy: 3 Bullish + EMA10 Break | //+------------------------------------------------------------------+ #property strict extern double LotSize = 0.01; extern int Slippage = 3; extern int MagicNumber = 12345; extern int EMA_Period = 10;
I have an expert advisor's investor login. I want you to study it and make me the exact same EA. There should be absolutely no differences or mistakes. You should have great observation skills for this aswell
I am looking for a developer to create an Expert Advisor (EA) for MetaTrader 5. Requirements: Trade XAUUSD (Gold) Automatically open and close trades Include Stop Loss and Take Profit settings Adjustable lot size and risk percentage Work on MT5 Allow me to change settings from the EA inputs Include backtesting support Source code preferred
> izz: #property strict input double LotSize = 0.01; input int BuyStopDistancePips = 50; input int SellStopDistancePips = 50; input int TrailingStartPips = 30; input int TrailingDistancePips = 30; input int MaxPositions = 3; input double StopLossPips = 0; input int MaxSpreadPoints = 300; input ulong MagicNumber = 20260702; input double DailyLossLimitUSD = 50; double PipValue; int digits; int OnInit() { digits =
Technical Description of the EA The Ghost Sovereign engine is a trend-following breakout system optimized for XAUUSD (Gold) . Its logic operates through several distinct layers: Trend Filtering: It utilizes a 144-period Exponential Moving Average (EMA) to establish the primary institutional trend direction . Momentum Entry: The EA executes trades when the closing price of the previous bar confirms a trend breakout
I have build a trading view indicator which monitors trades. The strategy is based on OB, it buys and sells bullish and bearish OB. Also valid re enters on the retest of orderblocks only if TP is hit the first time. I’m looking for someone to develop me a EA which works on the same logic and buys and sells of the same logic as my Indicator. I currently have my indicator firing signals into a telegram channel so I
TM 30+ USD
Order Block Forms / Price Touches │ ▼ Break Touch Candle High/Low │ ▼ Strength Alignment or BR Valid │ ▼ No Opposing OB within X Pips │ ▼ HL/LH Fractal OR Two-Candle Break │ ▼ ENTRY │ ▼ ──────── Trade Management ──────── │ ├─ Opposing OB Breached │ AND │ Opposite Strength Alignment or BR │ └──► Loss Exit │ ├─ Opposing OB Reached │
I am looking for an experienced MQL5 developer to code a simple grid trading strategy into an Expert Advisor. The strategy logic is already defined, and I am looking for someone with strong MQL5 development experience to implement it accurately and efficiently. If you are interested and have relevant experience, please get in touch so we can discuss the project details
I am looking for an experienced MQL5 or MQL4 developer with a strong background in low-latency algorithmic trading, market data integration, arbitrage and execution optimization. The project involves developing a high-performance HFT Expert Advisor (EA) for XAUUSD or US30 on IC Markets that is designed for robust execution in both demo and live environments. The EA may use market data feeds (such as lmax,one zero or

Proje bilgisi

Bütçe
40+ USD