Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Rejoignez notre page de fans
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
- Vues:
- 8383
- Note:
- Publié:
- 2019.01.02 14:28
- Mise à jour:
- 2019.01.28 07:19
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
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)
Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22986