top of page

Page 1 of 3

iHigh

Returns High price value for the bar of specified symbol with timeframe and shift.

double  iHigh(
  string           symbol,          // symbol
  int              timeframe,       // timeframe
  int              shift            // shift
  );

​

iLow

Returns Low price value for the bar of indicated symbol with timeframe and shift.

double  iLow(
  string           symbol,          // symbol
  int              timeframe,       // timeframe
  int              shift            // shift
  );

​

iLowest

Returns the shift of the lowest value over a specific number of bars depending on type.

int  iLowest(
  string           symbol,          // symbol
  int              timeframe,       // timeframe
  int              type,            // timeseries id
  int              count,           // count
  int              start            // starting index
);

​

iHighest

Returns the shift of the maximum value over a specific number of bars depending on type.

int  iHighest(
  string           symbol,          // symbol
  int              timeframe,       // timeframe
  int              type,            // timeseries
  int              count,           // cont
  int              start            // start
);

bottom of page