Mrkhazziq Markets

MQL5 Uzman Danışmanlar

İş Gereklilikleri

//+------------------------------------------------------------------+
//| Breakout EA for ZAR pairs (M5) |
//+------------------------------------------------------------------+
#property strict

extern int LookBackBars = 20;
extern double LotSize = 0.1;
extern int StopLossPips = 100;
extern int TakeProfitPips = 200;
extern int Slippage = 3;

datetime lastTradeTime = 0;

void OnTick()
{
    // Trade only on new candle
    static datetime lastBarTime = 0;
    if (Time[0] == lastBarTime)
        return;
    lastBarTime = Time[0];

    // Avoid multiple trades
    if (TimeCurrent() - lastTradeTime < 300) // wait at least 5 mins
        return;

    double highest = High[Highest(NULL, 0, MODE_HIGH, LookBackBars, 1)];
    double lowest = Low[Lowest(NULL, 0, MODE_LOW, LookBackBars, 1)];

    double sl, tp;
    int ticket;

    // BUY Breakout
    if (Close[1] <= highest && Close[0] > highest) {
        sl = Bid - StopLossPips * Point;
        tp = Bid + TakeProfitPips * Point;
        ticket = OrderSend(Symbol(), OP_BUY, LotSize, Ask, Slippage, sl, tp, "Breakout Buy", 0, clrBlue);
        if (ticket > 0) lastTradeTime = TimeCurrent();
    }

    // SELL Breakout
    else if (Close[1] >= lowest && Close[0] < lowest) {
        sl = Ask + StopLossPips * Point;
        tp = Ask - TakeProfitPips * Point;
        ticket = OrderSend(Symbol(), OP_SELL, LotSize, Bid, Slippage, sl, tp, "Breakout Sell", 0, clrRed);
        if (ticket > 0) lastTradeTime = TimeCurrent();
    }
}

Yanıtlandı

1
Geliştirici 1
Derecelendirme
(252)
Projeler
370
24%
Arabuluculuk
21
62% / 24%
Süresi dolmuş
1
0%
Yüklendi
2
Geliştirici 2
Derecelendirme
(7)
Projeler
6
33%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
3
Geliştirici 3
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
4
Geliştirici 4
Derecelendirme
(160)
Projeler
208
19%
Arabuluculuk
19
42% / 16%
Süresi dolmuş
0
Çalışıyor
5
Geliştirici 5
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Serbest
6
Geliştirici 6
Derecelendirme
Projeler
0
0%
Arabuluculuk
0
Süresi dolmuş
0
Çalışıyor
Benzer siparişler
Hello I would like to create a execution algo to manage my trades after I have discretionary chose them. The parameters of the algo are as follows: The entry is simple it would be: discretionary price I set myself + if MoM (Momentum) indicator is above or below specified level on a specific time frame I choose. So for example, Long 3 ES at 6000 if MOM is above -100 on 1 hour timeframe. Or conversely, Short 3 ES at
Want to create an EA based on the zigzag indicator. However it will have elements of d alembert, martingale, Grid elements too. Ongoing project and willing to pay monthly agreed amount
Hi Need a robot UT BOT, STC indicator with trailing SL and account locking system for Gold. And developer need to contact me Name : Muthu Telegram : @Muthu49592423 plaese contact directly
Gold Scaling 30 - 80 USD
I want EA according to attached image. How It Works EA waits for a breakout from recent highs/lows. It places pending buy/sell orders and monitors them. If price doesnt break within 9 hours, the setup resets for the next opportunity. Thats it. use VWAP for confirmation
Bonjour, Je recherche un développeur MQL5 expérimenté pour créer un EA complet basé sur une stratégie de breakout de la session asiatique , avec gestion du risque, SL/TP dynamiques, break-even, affichage graphique, et filtres temporels. 🚫 L'EA ne doit pas entrer en position pendant la session asiatique , uniquement après selon des règles de cassure. 📎 Tous les détails précis et structurés sont fournis dans le
EXPERT ADVISORY FOR ISAAC IBRAHIM The basics: This Expert advisory (EA) must be created according to the trading strategy given by Isaac Ibrahim and to fulfill the following: 1- Backtest the strategy for at least 2 years back at any given time with no technical complexity required to be done by Isaac Ibrahim. 2- The backtesting results must clearly show: a. Number of trades for every month during these two years b
Hi programmers, I am looking for a serious and immediately available programmer to develop an expert that utilizes a breakout strategy to identify market direction and execute trades in the correct direction. The breakout condition will be based on an automatic or manual setting. The manual setting involves two prices and breaks out when the market price is either above or below both prices. 1. Setting up the two
very simple formula 2 trade buy 2 trade sell tp hit or sl and sl use martangle (sum of loss x 2 or input given same martangle for tp side i will more explain
whatever is put in master should be copied to slave, live, limit, stop with their sl, tp and trailing stop, even with partial close. this means exact same thing should have in the slave. opposite entry might be a bonus but the basic features must be so well proven copy will be bought - no learners wasting time please if you already have one send me ex4 for testing
Hello MQL5 Developers, I need help building a smart AI-powered **daily signal bot** that runs on my laptop or Telegram. This is NOT an auto-trading EA. I want a bot that uses intelligent logic to analyze the market and give me **one clean signal per day** for instruments like **XAUUSD, BTCUSD, and USDJPY**. ✅ Here’s what the bot should do: 1. Analyze live charts directly (from MT5 or a price feed). 2. Use a mix of

Proje bilgisi

Bütçe
30+ USD

Müşteri

Verilmiş siparişler1
Arabuluculuk sayısı0