거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
지표

Crash Spike Trade Pattern - MetaTrader 5용 지표

조회수:
1969
평가:
(1)
게시됨:
업데이트됨:
candels3.mq5 (18.98 KB) 조회
MQL5 프리랜스 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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.