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 | ASO

Absolute Strength Oscillator trend-following indicator. Based on the forces of bulls and bears, the indicator displays the current market trend.

There are five inputs:

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

Calculation:

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

where:

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. ASO mode of RSI

MetaTrader Experts, Indicators, Scripts and Libraries

Fig. 2. ASO mode of Stochastic

21428