Expert Advisors • Indicators • Scripts • Libraries

MQL.RobotFX.org is the biggest collection of MetaTrader expert advisors (MT5 & MT4), indicators, scripts and libraries that can be used to improve trading results, minimize risks or simply automate trading tasks

MetaTrader 5 Indicator | ASH

Absolute Strength Histogram trend-following indicator.

The indicator displays the difference between bulls and bear power of the Absolute Strength Oscillator (ASO) indicator as a histogram

There are five inputs:

  • Period - ASO calculation period
  • Smoothing - ASO smoothing period
  • Mode - ASO calculation mode
    • RSI
    • Stochastic
  • Method - ASO calculation method
  • Applied price - ASO calculation price

Calculation:

ASH = BullsStrength - BearsStrength

where:

BullsStrength = MA(AvgBulls, Smoothing, Method)
BearsStrength = MA(AvgBears, Smoothing, Method)

AvgBulls = MA(Bulls, Period, Method)
AvgBears = MA(Bears, Period, Method)

Bulls = Price - Min
Bears = Max - Price

Price - Applied price  

Min, Max - the highest and lowest prices within the Period interval

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 1. ASH mode of RSI

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 2. ASH mode of Stochastic

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 3. ASH + ASO

21429