Unisciti alla nostra fan page
- Pubblicati da::
- Vladimir Karputov
- Visualizzazioni:
- 5099
- Valutazioni:
- Pubblicato:
- 2017.03.02 11:50
- Aggiornato:
- 2018.02.28 10:23
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
Author of the idea — Collector, author of the MQL5 code — barabashkakvn.
The MARE5.1 Expert Advisor is very easy to use. It uses the values of two Moving Averages (SMA) at the close of 0th, 2nd and 5th bar. The EA is configured to work on the M1 timeframe.
Input Parameters:
- Lots — entry position volume
- TakeProfit — the Take Profit level
- StopLoss — the Stop Loss level
- MAFastPeriod — averaging period of the first Moving Average
- MASlowPeriod — averaging period of the second Moving Average
- MovingShift — MA shift (the same for both Moving Averages)
- HourTimeOpen and HourTimeClose — time (in hours), an interval inside which position opening is allowed
{
return(INIT_PARAMETERS_INCORRECT);
}
if(HourTimeOpen==HourTimeClose)
{
return(INIT_PARAMETERS_INCORRECT);
}
if(HourTimeOpen>HourTimeClose)
{
return(INIT_PARAMETERS_INCORRECT);
}
It means that time in hours cannot be less than "0" or greater than "23", overlapping is not allowed.
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/17428

A histogram of minimum and maximum values of the following parameters: SYMBOL_SESSION_BUY_ORDERS_VOLUME - "Total current volume of buy orders" and SYMBOL_SESSION_SELL_ORDERS_VOLUME - "Total current volume of sell orders".

The indicator shows t he parameter "Total volume of open positions - SYMBOL_SESSION_INTEREST".

The simplest EA based on the Fractal_WeightOscillator weighted oscillator.

The NRTR_Gator indicator with the timeframe selection option available in the input parameters.