EASY TREND - MetaTrader 4 Script | Trading Script Download - MT4/MT5 Resources








(You need to use Heiken Ashi to view the chart or change the parameters to put the chart in front of the indicator)
EASY -> Green = Uptrend // Orange = Undefined // Red = Downtrend
The Bollinger Band inverse line is just a Bollinger Band indicator. Its lower limit mode parameter represents the upper BB line, and its upper mode parameter represents the lower BB line.
When the moving average crosses the upper BB line very quickly, it's probably an uptrend, and when the moving average crosses the lower BB line quickly, it's probably a downtrend.
(Bollinger Bands Inverse + MA + Foot Pingjian)
So I choose the H1 period to have a stronger trend, I write the histogram with appropriate colors and put everything in MTF to get a better view in the M1 or M5 periods
When MA > UPPERBB -> Grenn, MA < UPPER && MA > LOWERBB -> Oraange, MA < LOWERBB -> RED
I put the histogram into a MaxMinBand channel.
So you have to adjust the parameters of BBinverse, period, deviation and translation, as well as the parameters of fast MA
and time frame.
I prefer
external integer timeframe = 60;
//---- Input parameter Bollinger Bands inverse
external int ainpperiod = 10;
external double ainpdeviation =1.25;
external int ainpshift = 1;
//----Input parameter Ma
extern int aperiodma = 3;
external int ashiftma = 0;
external int method = 3;
external int apricema = 5;
//----Input parameter MaxMinChannel
external int Band_PeriodMM = 90;
external int SiftMM = 1;
But please let me know your parameter preferences.
Attachment download
📎bollinger-inverse.mq4 (4.67 KB)
📎 a-tendance-h1-chart-window.mq4 (3.12 KB)
📎 easy-trend.mq4 (13.23 KB)
Source: MQL5 #42134
💡 Featured Recommendations
✍️ Latest by the author
- •
- •
- •
- •
- •
- •
📌 Popular topics
- •
- •
- •
- •
- •
- •
- •
- •
🔗 You May Be Interested In
- •
- •
- •
- •
- •
- •