SuperTrend - page 26

 
olam:

this is already expire could you please add new version or could you please sent to me this email: [email address was deleted by moderator], thank you in advance

Just to remind:

Programmers (any programmers) are coding for free:

  • if it is interesting for them personally, or
  • if it is interesting for many members of this forum.

---------

And Freelance section of the forum should be used in most of the cases.
 

Hi all. Hope you are are doing well. 

I have found SuperTrend- Averages new format histo created by Mr.Mladen. It was MT4 version. I like that super trend. 

Do any one have Mt5 version of  SuperTrend- Averages new format histo. Can you share it here. 

Thanks 

 
I need a bot with supertrend, who can help me?
 
Andres Mario De Lima Hernandez #:
I need a bot with supertrend, who can help me?

And this is my other suggestion (which came from tsd 2010 and from tsd 2008):

----------------

Just to remind:

Coders (any coder) are coding for free:

  • if it is interesting for them personally, or
  • if it is interesting for many members of this forum.

----------------

and Freelance section of the forum should be used in most of the cases.

 

Forum on trading, automated trading systems and testing trading strategies

Divergence Indicators

Sergey Golubev, 2026.07.10 14:53

Building a Divergence System (Part II): Adaptive SuperTrend Custom Indicator

Building a Divergence System (Part II): Adaptive SuperTrend Custom Indicator

In the previous article, we introduced MPO4, a pressure-based oscillator that measures the directional effort behind price movements by weighting candlestick bodies against recent volatility. Combined with a non-repainting pivot-detection engine, it enabled us to identify bullish and bearish divergences, revealing moments when underlying buying or selling pressure begins to weaken before a potential market reversal.

This presents a mechanical challenge for systematic traders: once a divergence warns us that a trend is dying, how should we mechanically adjust our trade management to capitalize on it?


 

Making Custom Indicators for Beginners (Part 1): SuperTrend Indicator

Making Custom Indicators for Beginners (Part 1): SuperTrend Indicator

SuperTrend is a representative example of a classic weekend project: two developers can receive identical requirements yet produce very different implementations. The concept is well-established and based on a volatility-band approach (similar to Keltner Channels or Bollinger Bands); however, instead of plotting a static envelope around the price, it is rendered as a single line that switches sides depending on the trend direction. The concept combines the ATR (Average True Range) with a locking mechanism — the ratchet principle. This logic can be implemented in about twenty lines of code.
Making Custom Indicators for Beginners (Part 1): SuperTrend Indicator
Making Custom Indicators for Beginners (Part 1): SuperTrend Indicator
  • 2026.08.19
  • www.mql5.com
This article builds a robust SuperTrend indicator in MQL5 using ATR-based bands, a ratchet mechanism, and strict series indexing to avoid silent recursion errors and repainting on closed bars. We walk through buffer binding, ATR handle management, seeding, and arrow confirmation logic. A companion EA demonstrates practical integration