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

Total Power is a power indicator. It displays three lines: Bulls power, bears power, and total power.

It has two adjustable parameters:

  • Power period - power calculation period
  • EMA period - moving average calculation period

Calculations:

BullPower = BullCount * 100 / Power period
BearPower = BearCount * 100 / Power period
TotalPower= Abs(BearCount - BullCount) * 100 / Power period

where:

  • If HighPW > MA
    BullCount = BullCount+1
  • If LowPW < MA
    BearCount = BearCount+1

HighPW, LowPW - High and Low prices within the range of Power period

MA - EMA(Close, Period MA)

MetaTrader Experts, Indicators, Scripts and Libraries

22986