Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Visualizzazioni:
- 6969
- Valutazioni:
- Pubblicato:
- 2018.03.01 11:40
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
Median MA is a moving average, which is calculated using the median price for a given period.
A sorted array of prices for the specified period is used for calculating the moving average. A value from the array of prices with the following index is used:
- (N-1)/2 - for an odd N;
- ([N/2] + [N/2 + 1])/2 - for an even N.
The indicator has two input parameters:
- Period - calculation period;
- Applied price - price used for calculations.
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/19891

A moving average drawn as candlesticks on a chart.

Logarithmic regression channel.