Mrkhazziq Markets

MQL5 专家

指定

//+------------------------------------------------------------------+
//| 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();
    }
}

反馈

1
开发者 1
等级
(252)
项目
370
24%
仲裁
21
62% / 24%
逾期
1
0%
已载入
2
开发者 2
等级
(7)
项目
6
33%
仲裁
0
逾期
0
工作中
3
开发者 3
等级
项目
0
0%
仲裁
0
逾期
0
空闲
4
开发者 4
等级
(160)
项目
208
19%
仲裁
19
42% / 16%
逾期
0
工作中
5
开发者 5
等级
项目
0
0%
仲裁
0
逾期
0
空闲
6
开发者 6
等级
项目
0
0%
仲裁
0
逾期
0
工作中
相似订单
✅ Daily Bias Range Breakout EA – Developer Specification 1. ✅ Core Concept – What the EA Does The EA (Expert Advisor) analyzes yesterday’s daily candle to determine the market bias : bullish or bearish. On the next day, it waits for a matching H1 (1-hour) candle during a specific time window (e.g., 8 AM–12 PM New York time). When a valid H1 candle is found, it places a pending Buy Stop or Sell Stop order at the
Source code fix 30+ USD
Hello, i need someone to help me fix the source code becuase the EA doesnt work correctly. EA doesnt work like i want it to, not opening hedge positions correctly and some other thing paying only after the work is done, telegram @feint1337
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

项目信息

预算
30+ USD

客户

所下订单1
仲裁计数0