MQL4 Reference  Constants, Enumerations and Structures
 Constants, Enumerations and Structures  Chart Constants
 Chart Constants  Positioning Constants
  Positioning Constants
  
    
      
| 
Positioning ConstantsThree identifiers from the ENUM_CHART_POSITION list are the possible values of the position parameter for the ChartNavigate() function. ENUM_CHART_POSITION 
|  |  |  
| 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);if(handle!=0)
 {
 ChartSetInteger(handle,CHART_AUTOSCROLL,false);
 ChartSetInteger(handle,CHART_SHIFT,true);
 ChartSetInteger(handle,CHART_MODE,CHART_LINE);
 ResetLastError();
 bool res=ChartNavigate(handle,CHART_END,150);
 if(!res) Print("Navigate failed. Error = ",GetLastError());
 ChartRedraw();
 }
 |  |