Schau, wie man Roboter kostenlos herunterladen kann
Finden Sie uns auf Twitter!
und werden Sie Mitglied unserer Fangruppe
Interessantes Skript?
Veröffentliche einen Link auf das Skript, damit die anderen ihn auch nutzen können
Hat Ihnen das Skript gefallen?
Bewerten Sie es im Terminal MetaTrader 5
Bibliotheken

PeriodBarsHIGH PeriodBarsLOW - Bibliothek für den MetaTrader 4

Ansichten:
7265
Rating:
(11)
Veröffentlicht:
2016.04.26 16:16
Benötigen Sie einen Roboter oder Indikator, der auf diesem Code basiert? Bestellen Sie ihn im Freelance-Bereich Zum Freelance
// Get by the specified time interval 
// ltDatCurBeg  - ltDatCurEnd 
// HIGH 
double PeriodBarsHIGH( datetime ltDatCurBeg, datetime ltDatCurEnd )
{
   int iBarsDayBeg = iBarShift(Symbol(), 0 , ltDatCurBeg,false );  // index of the first bar
   int iBarsDayEnd = iBarShift(Symbol(), 0 , ltDatCurEnd,false );  // index of the last bar
   int indxHighDay = iHighest( Symbol(),0 , MODE_HIGH, (iBarsDayBeg - iBarsDayEnd) , iBarsDayEnd) ; // Get the index of the HIGH bar
   double HighDay  = iHigh(Symbol(),0, indxHighDay); // Get the HIGH value of the High bar 
   return(HighDay);
}
 
 
//
// Get the LOW by the specified range
//
double PeriodBarsLOW( datetime ltDatCurBeg, datetime ltDatCurEnd )
{
   int iBarsDayBeg = iBarShift(Symbol(), 0 , ltDatCurBeg,false );  // index of the first bar
   int iBarsDayEnd = iBarShift(Symbol(), 0 , ltDatCurEnd,false );  // index of the last bar
   int indxLowDay  = iLowest( Symbol(), 0 , MODE_LOW, (iBarsDayBeg - iBarsDayEnd) , iBarsDayEnd) ; // Get the index of the HIGH bar
   double LowDay   = iLow(Symbol(),0, indxLowDay); // Get the LOW value of the High bar
   return(LowDay);
}

Übersetzt aus dem Russischen von MetaQuotes Ltd.
Originalpublikation: https://www.mql5.com/ru/code/7358

STARCBands STARCBands

The indicator plots a moving average with a Bollinger type envelope.

SHI_SilverTrendSig SHI_SilverTrendSig

The indicator generates buy and sell signals.

Library of functions for singular transformation Library of functions for singular transformation

Have you perhaps heard about the caterpillar? Here it is.... I do not remember where I got the code, I simply translated it from С++ to MQL4.

Signal Bars Signal Bars

This indicator shows the trend from the smaller timeframes up to H4.