Watch how to download trading robots for free
Find us on Facebook!
Join our fan page
Interesting script?
So post a link to it -
let others appraise it
You liked the script? Try it in the MetaTrader 5 terminal
Indicators

Small_Inside_Bar - indicator for MetaTrader 5

Views:
5129
Rating:
(10)
Published:
2018.04.18 17:05
Need a robot or indicator based on this code? Order it on Freelance Go to Freelance

The indicator searches for the "Inside Bar" pattern and marks it on a chart. In the Inside Bar candlestick pattern, the right candlestick is inside the right candlestick, which is the determinant candlestick. It searches for formations, in which the internal candlestick of the pattern is not more than half the size of the determinant candlestick.

The formula for the bullish setup:

  1. High[i]<High[i-1],
  2. Low[i]>Low[i-1],
  3. (High[i-1]-Low[i-1])/(High[i]-Low[i])>2,
  4. Close[i]>Open[i],
  5. High[i]<Median[i-1],
  6. Close[i-1]<Open[i-1].
  7. The formula for the bearish setup:

    1. High[i]<High[i-1],
    2. Low[i]>Low[i-1],
    3. (High[i-1]-Low[i-1])/(High[i]-Low[i])>2,
    4. Close[i]<Open[i],
    5. Low[i]<Median[i-1],
    6. Close[i-1]>Open[i-1].
    7. The indicator has no configurable parameters, since the pattern is determined based on the price action.

      Translated from Russian by MetaQuotes Ltd.
      Original code: https://www.mql5.com/ru/code/20122

      Autocorrelation Autocorrelation

      The indicator calculates and displays on a chart the autocorrelation function, which shows the relationship between the function (signal) and its shifted copy depending on the time shift value.

      AsymmetricFractals AsymmetricFractals

      The indicator allows setting any dimension for each side of a fractal.

      SSS SSS

      SSS (Special Slow Stochastic) has an additional smoothed (slow) line based on the Stochastic signal line.

      AD AD

      The AD (Accumulation Distribution) indicator with three calculation methods.