MT5 Indicator with alerts and labels for HTF Engulfing or HTF Hammer/Shooting Star Bar Play (EHBP) with Multi-Timeframe Validation

작업 종료됨

실행 시간 8 일

명시

Only apply if you have experience in building multitimeframe indicator. Do not use any software to generate the code automatically.

Code should be concise and proper as per best practices and typed by you.


MQL5 Indicator Requirements: HTF Engulfing or HTF Hammer/Shooting Star Bar Play (EHBP) with Multi-Timeframe Validation


1. Input Parameters

Timeframe Selection

  • Higher Timeframe (HTF):

    • Options:  1 Month ,  1 Week ,  1 Day ,  8 Hour ,  4 Hour ,  2 Hour ,  1  Hour , 15 Minute

    • Default:  1 Day

  • Lower Timeframe (LTF):

    • Options:  1 Month ,  1 Week ,  1 Day ,  8 Hour ,  4 Hour ,  2 Hour ,  1  Hour , 15 Minute

    • Default:  4 Hour

  • Validation:

    • Ensure  LTF < HTF  (e.g., if HTF= 4 Hour , LTF cannot be  8 Hour ).

    • Show error message and disable calculations if invalid.


2. Core Logic

Step 1: Detect HTF Engulfing or Hammer Candle closure + PO3 Signals

  • Bullish Signal (HTF candle):

    • low < previous low   AND   close > previous open AND close >  Previous close  AND   close in Lower Timeframe above  retracement level of selected Fib after breaching below it in lower timeframe but closing above it in lower timeframe candle . Its not necessary that the HTF candle High will be above the high of its previous candle. Still it should be considered if other conditions are met.

  • Bearish Signal (HTF candle):

    • high > previous high  AND  close < previous open AND CLOSE < PREV close  AND   close in Lower Timeframe below retracement level of selected Fib after breaching above it in lower timeframe but closing below it in lower timeframe candle

      Its not necessary that the HTF candle Low will be below the low of its previous HTF candle. Still it should be considered if other conditions are met.

Step 2: Calculate Retracement Levels

For each HTF signal, compute Fibonacci levels as per selection multiple Fib levels can be selected like 26 percent, 38 percent, 50%, 61.8 percent etc:

  • Bullish:

    Copy

    25% = HTF High - (HTF High - HTF Low) * 0.25 38.2% = HTF High - (HTF High - HTF Low) * 0.382 50% = (HTF High + HTF Low) / 2 ...

  • Bearish:

    Copy

    25% = HTF Low + (HTF High - HTF Low) * 0.25 38.2% = HTF Low + (HTF High - HTF Low) * 0.382 ...

Step 3: Track LTF Candle Closes

For each LTF candle close:

  • Bullish Signal Check:
    If LTF candle:

    • Breached below a retracement level (intra-candle  low < level ).

    • Closed above the same level ( close > level ).
      → Trigger alert/label.

  • Bearish Signal Check:
    If LTF candle:

    • Breached above a retracement level (intra-candle  high > level ).

    • Closed below the same level ( close < level ).
      → Trigger alert/label.


3. Visualization & Alerts

Labels

  • Display only after LTF candle closes and conditions are met.

  • Format:

    • EBP [Level] Held (LTF)

    • Example:  EBP 38.2% Held (4H)

  • Placement:

    • Below/above the LTF candle that triggered the condition.

Retracement Lines

  • Plot horizontal lines for all active levels.

  • Color Coding:

    • Bullish: Shades of green.

    • Bearish: Shades of red.

Alerts

  • Trigger only after LTF candle closes. Give meaningful alerts which are descriptive and easy to understand. Print symbol name in alerts. In Chart labels show small labels like Green Up traingle for Bullish Setup and Red down triangle for Bearish setup.

  • Message Examples:

    • XAUUSD Bullish 38.2% Level Held on 4H LTF on 1 Day HTF at time 09:00 AM Swing Low in LTF price is 2912.

    • XAUUSD Bearish 61.8% Level Held on 2H LTF on 1 Day HTF  at time 02:00 PM Swing High in LTF price is 2952.


4. Technical Implementation

Key Functions

  1. Timeframe Validation:

    mql5
    Copy

    bool validateTimeframes() { int htfMinutes = convertToMinutes(htfInput); int ltfMinutes = convertToMinutes(ltfInput); return (ltfMinutes < htfMinutes); }

  2. Track Active Signals:
    Use arrays/structs to store:

    • HTF signal type (bullish/bearish).

    • Retracement levels.

    • Corresponding LTF candle timestamps.

  3. Check LTF Closes:

    mql5 code example just for reference

    void checkLTFCloses() {  
      for (int i = 0; i < arraySize(activeSignals); i++) {  
        // Get retracement levels for signal[i]  
        for (int j = 0; j < levelsCount; j++) {  
          double level = activeSignals[i].levels[j];  
          if (isBullish) {  
            bool breached = ltfLow < level;  
            bool closedAbove = ltfClose > level;  
            if (breached && closedAbove) triggerAlert();  
          } else {  
            bool breached = ltfHigh > level;  
            bool closedBelow = ltfClose < level;  
            if (breached && closedBelow) triggerAlert();  
          }  
        }  
      }  
    }  

No Repainting

  • All labels/alerts are tied to closed LTF candles (confirmed price action).


5. Example Workflow

  1. HTF Signal: Bullish Engulfing + PO3 on  1D  candle.

  2. Calculate Levels: 25% = 1900, 38.2% = 1850, 50% = 1800.

  3. LTF Candle (4H):

    • Candle 1: Low = 1845 (breaches 38.2%), Close = 1855 → Triggers alert/label.

    • Candle 2: Close = 1895 (no breach) → No action.

  4. Labels: Display  EBP 38.2% Held (4H)  below Candle 1 after it closes.


6. Deliverables

  1. Indicator Code:

    • .mq5  file with input validation, multi-timeframe logic, and alerts. Source code and executable both for MT5. Strategy should work in Strategy tester also when replaying.

  2. Documentation:

    • Clear comments explaining HTF/LTF interaction. Inline comments and Header comments.

  3. Testing:

    • Verify on  EURUSD  (HTF=1D, LTF=4H). XAUUSD, USOIL, US30, BTCUSD on various timeframe combinations.

    • Ensure labels/alerts never repaint.






Example of 50% fib retracement after a Bearish Engulfing HTF candle.











































응답함

1
개발자 1
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
2
개발자 2
등급
(108)
프로젝트
178
25%
중재
24
17% / 75%
기한 초과
16
9%
작업중
3
개발자 3
등급
(3)
프로젝트
4
0%
중재
0
기한 초과
0
무료
4
개발자 4
등급
(64)
프로젝트
77
55%
중재
4
0% / 50%
기한 초과
1
1%
작업중
게재됨: 6 코드
5
개발자 5
등급
(14)
프로젝트
14
14%
중재
8
0% / 88%
기한 초과
2
14%
로드됨
6
개발자 6
등급
(9)
프로젝트
11
18%
중재
4
0% / 100%
기한 초과
4
36%
무료
7
개발자 7
등급
프로젝트
0
0%
중재
0
기한 초과
0
무료
8
개발자 8
등급
(318)
프로젝트
565
35%
중재
81
31% / 44%
기한 초과
204
36%
무료
9
개발자 9
등급
(2)
프로젝트
3
0%
중재
8
13% / 88%
기한 초과
1
33%
무료
비슷한 주문
Bonjour, je recherche un développeur MQL5 expérimenté pour créer un Expert Advisor pour MetaTrader 5 basé sur une stratégie de trading intégrant des principes de gestion des risques rigoureux et d'intelligence financière. Le robot doit être capable de gérer plusieurs paires de devises et d'optimiser automatiquement les entrées et sorties en fonction de conditions de marché prédéfinies."
MT4/MT5 HFT EA us30 30 - 3000 USD
Hello everybody, I'm looking for an experienced MQL4/MQL5 developer to optimize a High-Frequency Trading (HFT) Expert Advisor for both MT4 and MT5. The EA performs consistently and profitably on demo accounts, but when it is run on Raw and Standard live accounts under what appear to be the same trading conditions, it begins generating losses. I do not have the original source code (.mq4/.mq5); I only have the
I'm looking for an experienced NinjaTrader 8 (C#) developer to build a fully automated futures trading strategy. Please apply only if you have proven experience developing and testing NinjaTrader strategies. Project Overview Develop a fully automated NinjaTrader 8 strategy. Designed for Apex funded and evaluation accounts. Primary instruments: NQ/MNQ Futures (with flexibility to support other futures later). Trading
Hello I need to purchase the source code of an already built profitable mt5 EA with proven track recordIf you have something similar and you are open to selling the source code please apply to this post Please note I am not looking for a dev to build the product from scratch , but need something that is already built and have at least one year worth of track record
I need an Expert Advisor for MT5 on XAUUSD 1min timeframe using SMC concepts. STRATEGY RULES: SELL: 1. Identify previous day High/Low as liquidity 2. Entry only during London-NY session: 15:00-19:00 GMT+3 or broker clock. 3. If price sweeps previous day High and closes back below it 4. Check for bearish 1min FVG below sweep candle 5. Wait for BOS - lower low 6. Entry: Sell/buy at 50% of the FVG 7. SL: 10 pips above
Code An Loss Rate 90-100% MT5 EA , that can blow a 100 USD account a day ,with fixed TP of 3000 points and SL of 3000 For better Rate Calculations get an strategy that can lead to so
Shooter razor 30+ USD
Makes it takes trades by it self buy and sell, it must use the higher signals, also when I press stop it must not pick any trades I want it to take trades automatically when I press start also close by it self
8 cap prop firm passing 30 - 3000 USD
I am looking for an experienced MQL4/MQL5 HFT developer to build or optimize a High-Frequency Trading (HFT) Expert Advisor that can successfully pass proprietary trading firm challenges and perform consistently under live trading conditions with brokers such as 8cap or BlackBull Markets . The developer should have proven experience with HFT execution, ultra-low-latency trading, broker execution, slippage, spreads
I need a professional MT5 Expert Advisor (MQL5) for XAU/USD (Gold) only. Requirements: - Symbol: XAU/USD only - Timeframe: H1 trend, M5 entry - Smart Money Concept (SMC) - Liquidity Sweep - Break of Structure (BOS) - Order Block Retest - Confirmation Candle (Engulfing or Pin Bar) - ATR-based Stop Loss - Risk:Reward = 1:3 (adjustable) - Auto Lot (1% risk) - Break Even - Trailing Stop - Maximum 2 trades per day - One
I have a High-Frequency Trading (HFT) Expert Advisor for both MT4 and MT5 designed primarily for US30 (Dow Jones Index) . The EA performs consistently and profitably on demo accounts, but when I run it on an IC Markets Raw or Standard live account, it starts generating losses under what appear to be the same trading conditions. At this time, I cannot provide the source code (.mq4/.mq5). I can only provide the

프로젝트 정보

예산
30+ USD
기한
에서 1  2 일