- Types of Chart Events
- Chart Timeframes
- Chart Properties
- Positioning Constants
- Chart Representation
- Examples of Working with the Chart
Positioning Constants
Three identifiers from the ENUM_CHART_POSITION list are the possible values of the position parameter for the ChartNavigate() function.
ENUM_CHART_POSITION
ID |
Description |
---|---|
CHART_BEGIN |
Chart beginning (the oldest prices) |
CHART_CURRENT_POS |
Current position |
CHART_END |
Chart end (the latest prices) |
Example:
long handle=ChartOpen("EURUSD",PERIOD_H12);
|