Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Indicatori

Power_Measure - indicatore per MetaTrader 5

Visualizzazioni:
4731
Valutazioni:
(12)
Pubblicato:
2018.10.25 15:29
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

Power measure oscillator displays the ratio of the price change to volatility.

It has one configurable parameter:

  • Period - calculation period

Calculation:

The indicator calculates the percentage difference between the current and previous Close price:

CC = 100.0*(Close - PrevClose) / PrevClose

The percentage difference between High and Low prices is calculated as well:

HL = 100.0 * (High - PrevLow) / PrevLow

Power measure is calculated as a correlation ratio between these two flows:

PM = Sum/Sqrt(SumCC2 * SumHL2)

where:

Sum = Sum((CC - SMA(CC, Period)) * (HL - SMA(HL, Period)), Period) SumCC2 = Sum((CC - SMA(CC, Period)) * (CC - SMA(CC, Period)), Period) SumHL2 = Sum((HL - SMA(HL, Period)) * (HL - SMA(HL, Period)), Period)

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/22090

Pro_Go Pro_Go

Williams Pro-Go indicator

XCCI_Candle_Vol_Zer XCCI_Candle_Vol_Zer

XCCI_Candle_Vol indicator showing a breakthrough of its zero line using candles, color labels and audio signals

Mogalef Mogalef

Mogalef Bands indicator

Sensitive Sensitive

The Expert Advisor based on iMACD(). Displaying MACD values via Point().