High, Low and Close of the previous day, week or month – indicator MetaTrader 4

High, Low and Close of the previous day, week or month - indicator for MetaTrader 4
Optimized versions available for free:Metatrader 4: Metatrader 5: Follow on instagram: The indicator shows the High, Close and Low of the previous day, week or month. These levels are very commonly used as support and resistance among traders, so the indicator will draw them and leave a gap between periods to make it easy to … Read more

Hikkake Pattern (Inside Day False Breakout) – indicator MetaTrader 5

Hikkake Patterns found
Hikkake Pattern (Inside Day False Breakout) indicator is a trading strategy based on false breakouts. Translated into MQL5 code from Dan Chesler’s article published in April 2004, Active Trader Magazine “Trading False Moves with the Hikkake Pattern”. The basic Hikkake pattern consists of two price bars — two hourly bars, two daily bars, two weekly … Read more

Day Trading PAMXA – EA MetaTrader 5

Day Trading PAMXA
Idea by PAMXA mq5 code author – barabashkakvn The strategy is based on signals generated by two indicators calculated on different timeframes: iAO (Awesome Oscillator, AO) on the D1 TF and iStochastic (Stochastic Oscillator, Stoh) on H1. The signal is formed in two steps. Example of a BUY signal: Step one. On the higher timeframe, wait for the iAO … Read more

Reverse Day Fractal – EA MetaTrader 4

Reverse Day Fractal - expert for MetaTrader 4
The algorithm is based on the idea of returning the current fractal to the opening price of the day. Often this happens with a sharp change of trend, which allows you to earn. // — bool op_buy_sig() {         if(((e_Low() < e_Low_1()) && (e_Low() < e_Low_2())) && (e_Close() > e_Open()))                 return true;         // —         return false; … Read more

Expert Advisor specific day and time – EA MetaTrader 4

Expert Advisor specific day and time - expert for MetaTrader 4
It’s an expert to open and close orders on specific day and time. Expert open and close orders only with the same symbol it attached. Parameters Day Open Orders – Set day open orders. Hour Open Orders – Set hour open orders. Minute Open Orders – Set minutes open orders. Open Buy Orders – Select if open buy orders. … Read more