| Package | Description |
|---|---|
| com.jfx |
| Modifier and Type | Method and Description |
|---|---|
int |
MT4.iBars(String symbol,
Timeframe timeframe)
Returns the number of bars on the specified chart.
|
int |
MT4.iBarShift(String symbol,
Timeframe timeframe,
Date time,
boolean exact)
Search for bar by open time.
|
double |
MT4.iClose(String symbol,
Timeframe timeframe,
int shift)
Returns Close value for the bar of indicated symbol with timeframe and shift.
|
double |
MT4.iHigh(String symbol,
Timeframe timeframe,
int shift)
Returns High value for the bar of indicated symbol with timeframe and shift.
|
int |
MT4.iHighest(String symbol,
Timeframe timeframe,
Series type,
int count,
int start)
Returns the shift of the maximum value over a specific number of periods depending on type.
|
double |
MT4.iLow(String symbol,
Timeframe timeframe,
int shift)
Returns Low value for the bar of indicated symbol with timeframe and shift.
|
int |
MT4.iLowest(String symbol,
Timeframe timeframe,
Series type,
int count,
int start)
Returns the shift of the least value over a specific number of periods depending on type.
|
double |
MT4.iOpen(String symbol,
Timeframe timeframe,
int shift)
Returns Open value for the bar of indicated symbol with timeframe and shift.
|
Date |
MT4.iTime(String symbol,
Timeframe timeframe,
int shift)
Returns Time value for the bar of indicated symbol with timeframe and shift.
|
double |
MT4.iVolume(String symbol,
Timeframe timeframe,
int shift)
Returns Tick Volume value for the bar of indicated symbol with timeframe and shift.
|