Guarda come scaricare robot di trading gratuitamente
Ci trovi su Telegram!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

Crash Spike Trade Pattern - indicatore per MetaTrader 5

Visualizzazioni:
1969
Valutazioni:
(1)
Pubblicato:
Aggiornato:
Freelance MQL5 Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

This MT5 indicator detects Crash market spike patterns using a specific 3-candle formation:

  • Red-Green-Red candle pattern (where red candles are strong spikes and the green is a middle retracement).

  • When the pattern is found, it draws a box around the high/low of those 3 candles.

  • It also plots a horizontal entry line at the middle candle’s open price.

  • The line stays active until price returns to that level (mitigation).

  • Once the entry price is hit (mitigated), the entry line is replaced by a shorter fixed line from the pattern to the mitigation candle.

  • It works on both historical and real-time candles.

  • Visually helps identify potential return-to-zone trading opportunities.

Input Name Description
BoxColor Color of the zone box (default: Red).
LineColor Color of the entry line (default: Dodger Blue).
BoxWidth Thickness of the zone box border.
LineWidth Thickness of the entry line.
BoxStyle Style of the box border (solid, dashed, etc.).
LineStyle Style of the entry line (solid, dashed, etc.).


//==== Input Parameters ====
input color    BoxColor     = clrRed;
input color    LineColor    = clrDodgerBlue;
input int      BoxWidth     = 2;
input int      LineWidth    = 1;
input ENUM_LINE_STYLE BoxStyle = STYLE_SOLID;
input ENUM_LINE_STYLE LineStyle = STYLE_SOLID

This indicator detects a specific bearish spike formation over 3 candles:

  1. Candle 1:

    • Bearish (Red candle).

    • Long wick.

    • Body must be greater than 70% of the total candle range (i.e., a strong spike).

  2. Candle 2 (Middle):

    • Bullish (Green candle).

    • Can be any size; just needs to be positive.

  3. Candle 3:

    • Bearish again.

    • Same condition as Candle 1: body > 70% of full range.

 When this pattern is found:

  • It identifies a "supply zone" created by aggressive selling.

  • A box is drawn around the high and low of the 3 candles.

  • An entry line is drawn at the open price of the middle (green) candle, expecting price to return.



Core Idea / Strategy Concept

This tool is based on the Smart Money Concept (SMC) — particularly the idea of mitigation zones and supply/demand imbalances.

  • After a strong bearish impulse, price often retraces back to the origin of the move (the middle candle).

  • The indicator marks that area visually as a “mitigation zone”.

  • Once price returns to this zone (entry line), it is considered "mitigated", and a trader may look for re-entry or reaction.

  • It removes the entry line after mitigation to keep the chart clean and optionally draws a shorter line to show mitigation.

Practical Use:

  • Look for return-to-box trades.

  • Can be used for sell setups on Crash markets (or Boom with inversion).

  • Works great in confluence with other indicators (like EMA, OBV, or order block confirmations).


Creat Button Close BuySell On Chart Creat Button Close BuySell On Chart

MQL5 script for MetaTrader 5 that adds two buttons to close all buy or sell positions for the current symbol.

LotSize Calculation LotSize Calculation

This is a simple script file to compute lot size either using risk percentage approach or the actual amount to risk.

CBitBuffer Class - Data Serialization in MQL5 CBitBuffer Class - Data Serialization in MQL5

A class for reading and writing individual bits or bit sequences to and from a buffer.

Boom Index Spike Pattern Boom Index Spike Pattern

This MetaTrader 5 (MT5) custom indicator, boomSpikeBoxMitigationFinal.mq5, detects a specific bullish spike pattern on the chart and marks entry zones using rectangles and horizontal lines. Once the price returns to ("mitigates") the entry level, the entry line is shortened to the mitigation point.