Professional to try to make EA_MT4 and EA_MT5 Expert lighter and less heavy

İş Gereklilikleri

This should not cause errors, slowdowns, conflicts, etc.

There can be no changes to the strategy or how the expert works.

Do this for both EA_MT4 and EA_MT5.

Do this to become lighter__________________________

ORDER_TYPE_SELL (In diminished form): OS

OP_SELL (In diminished form): OS

ORDER_TYPE_BUY (In diminished form): OB

OP_BUY (In diminished form): OB

ticket (In diminished form): t_

myOrderSend (In diminished form): mS1

myOrderModifyRel (In diminished form): mR1

myOrderClose (In diminished form): mC1

myAlert (In diminished form): mA1

MagicNumber (In diminished form): M1

MaxLongTrades (In diminished form): L1

MaxShortTrades (In diminished form): S1

MaxOpenTrades (In diminished form): O1

TradeSize (In diminished form): T1

IsTradeAllowed (In diminished form): ITA

RefreshRates (In diminished form): RR

TerminalInfoInteger(TERMINAL_TRADE_ALLOWED) (In diminished form): TIn(TTA)

MQLInfoInteger(MQL_TRADE_ALLOWED) (In diminished form): MIn(MTA)

SymbolInfoTick(Symbol(), last_tick); (In diminished form): Sy(Sm(), ls);

last_tick.bid (In diminished form): ls.b

last_tick.ask (In diminished form): ls.a

* myPoint (In diminished form): * mP1

SL_Points (In diminished form): S_1

TP_Points (In diminished form): T_1

return (In diminished form): rt

OpenTradeSize (In diminished form): OT1

LastTradePrice (In diminished form): LT1

PriceTooClose (In diminished form): TC

price (In diminished form): p_

Right_Value1 (In diminished form): RV1

Right_Value01 (In diminished form): RV01

_______________________________________________

   
   //BEFORE - Open Buy Order, instant signal is tested first
   if(EA
   && Cross(1, getAsk() > LastTradePrice(1, MagicNumber3) + 20.0 * myPoint)
   && OpenTradeSize(1, MagicNumber3) == TradeSize1
   )
     {
      MqlTick last_tick;
      SymbolInfoTick(Symbol(), last_tick);
      price = last_tick.ask;
      SL = SL_Points2 * myPoint;
      TP = TP_Points2 * myPoint;
      if(TerminalInfoInteger(TERMINAL_TRADE_ALLOWED) && MQLInfoInteger(MQL_TRADE_ALLOWED))
        {
         ticket = myOrderSend(ORDER_TYPE_BUY, price, TradeSize2, "EA", MagicNumber4, MaxLongTrades2, MaxShortTrades2, MaxOpenTrades2);
         if(ticket == 0) return true;
        }
      else //not autotrading => only send alert
         myAlert("order", "EA");
      myOrderModifyRel(ORDER_TYPE_BUY, ticket, SL, 0);
      myOrderModifyRel(ORDER_TYPE_BUY, ticket, 0, TP);
     }
   
   //AFTER - Open Buy Order, instant signal is tested first
   if(EA
   && Cross(1, getAsk() > LT1(1, M3) + 20.0 * mP1)
   && OT1(1, M3) == T1
   )
     {
      MqlTick ls;
      Sy(Sm(), ls);
      p_ = ls.a;
      SL = S_2 * mP1;
      TP = T_2 * mP1;
      if(TIn(TTA) && MIn(MTA))
        {
         t_ = mS1(OB, p_, T2, "EA", M4, L2, S2, O2);
         if(t_ == 0) rt true;
        }
      else //not autotrading => only send alert
         mA1("order", "EA");
      mR1(OB, t_, SL, 0);
      mR1(OB, t_, 0, TP);
     }

.


Yanıtlandı

1
Geliştirici 1
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
2
Geliştirici 2
Derecelendirme
(237)
Projeler
243
31%
Arabuluculuk
0
Süresi dolmuş
3
1%
Serbest
Yayınlandı: 2 kod
3
Geliştirici 3
Derecelendirme
(66)
Projeler
73
5%
Arabuluculuk
33
15% / 36%
Süresi dolmuş
6
8%
Çalışıyor
4
Geliştirici 4
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
5
Geliştirici 5
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
(5)
Projeler
5
20%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
7
Geliştirici 7
Derecelendirme
Projeler
1
0%
Arabuluculuk
3
33% / 33%
Süresi dolmuş
0
Çalışıyor
8
Geliştirici 8
Derecelendirme
(10)
Projeler
12
8%
Arabuluculuk
6
33% / 33%
Süresi dolmuş
2
17%
Yüklendi
9
Geliştirici 9
Derecelendirme
(462)
Projeler
907
76%
Arabuluculuk
25
16% / 68%
Süresi dolmuş
99
11%
Serbest
Yayınlandı: 1 makale, 6 kod
10
Geliştirici 10
Derecelendirme
(8)
Projeler
12
0%
Arabuluculuk
22
0% / 77%
Süresi dolmuş
4
33%
Serbest
11
Geliştirici 11
Derecelendirme
(3)
Projeler
2
0%
Arabuluculuk
1
0% / 0%
Süresi dolmuş
0
Serbest
12
Geliştirici 12
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
Benzer siparişler
⸻ I have an Expert Advisor called NeuroTrendX_Pro v7.9 ULTRA (NTX Pro). I need a reliable and experienced MQL5 developer to finalize and correct it without removing or disabling any existing logic. Scope of work (included in the fixed budget): • Fix all existing compile/runtime errors (not just one). • Keep the entire current logic intact (do not remove or change modules). • Implement and confirm the following
Thabo-killerbot 30 - 1000 USD
//+------------------------------------------------------------------+ //| SimpleMA.mq5 | //| Auto trading bot example | //+------------------------------------------------------------------+ #property copyright "ChatGPT" #property link "" #property version "1.00" #property strict input int FastMAPeriod = 10; input int SlowMAPeriod = 30; input double Lots = 0.1; int fastMAHandle; int slowMAHandle; double fastMA[];
Automate my strategy 30 - 70 USD
🚀 Looking for a Trading Bot Coder 🚀 I’m searching for an experienced developer to help automate my trading strategies. Requirements: Strong knowledge in MQL5 / MT5 (or TradingView Pine Script, depending on platform) Experience with price action & strategy automation Ability to integrate custom risk management & alerts 💡 If you’re a skilled coder who can turn trading ideas into a profitable bot, let’s connect
Hello, I’m looking for an MQL5 or MQL4 EA that trades EURUSD (optionally other majors or XAUUSD). The broker applies a 4-pip spread on EURUSD and higher on other symbols. The sole objective is to generate at least 45–60 lots of volume within 2 weeks or max one month (more is better; a bonus is paid for every additional 10 lots traded). The account has 1000 USD starting balance. Capital preservation is not required
Hey there, I’m looking to get a custom NinjaTrader indicator/plugin/tool developed. It’s very similar to Riley Coleman’s “Candlestick Trader” indicator (you can see a walkthrough of it in this YouTube video at timestamp 6:52: https://www.youtube.com/watch?v=NjCUZveXtLo&amp ;t=303s ). Please take a look at that video for reference, as I’d like most of the core features replicated. To summarize, the key functions I
I am looking for an experience MQL4 developer for making a profitable prop firm compatible MT4 gold scalper EA on a 5 Minute time frame. The EA should have a win rate of not less than 90% on back testing. The EA should be able to pass all prop firm challenges like Funded Next, FTMO, Funding Pips within 1-2 weeks. The EA should also work on live funded account. Any strategy can be used to develop the EA. Proper risk
I’m looking for a profitable Expert Advisor (EA) — the real beast that can deliver strong results on MT4/MT5. If you have a proven EA with good performance and risk management, kindly reach out with details and results
Modify my MT5 EA 30 - 40 USD
I am looking for an MQL5 programmer who can modify and customize my personal MT5 EA. There is problem in placing stop loss but still the EA is profitable on back testing. I also want to add news filter and prop firm compatible. The details will be shared to the developer personally
Hi, I am looking for readymade EA/a developer who can build it one for me. Feel free to contact me if you can fulfill my requirement. But be sure my a developer must have capability to develop complex EA with robust architecture. Especially on sophisticated trading methodology i.e. ICT/SMC etc
Please build me an EA tha can do the following: Normally I when executed buy (0.01)trade, I place sell (0.03) stop order for in case I predicted wrong, and when this sell is triggered, I place buy (0.07) stop on the initial buy, and the circle go on until I Tp is hit, all these trades I set TP and SL on them and they correspond, for sells will have same TP and Same SL, and all buys triggered after initial will have

Proje bilgisi

Bütçe
35+ USD
Son teslim tarihi
from 1 to 3 gün

Müşteri

(2)
Verilmiş siparişler3
Arabuluculuk sayısı0