//+------------------------------------------------------------------+
//|                                         CHART_AUTO_SCALE_SCR.mq4 |
//|                                  Copyright 2014, Khalil Abokwaik |
//+------------------------------------------------------------------+
#property copyright "Copyright 2014, Khalil Abokwaik"
#property link      "http://www.mql5.com"
#property version   "1.00"
//#property strict
//#property script_show_inputs
//--- input parameters
//extern int  DISTANCE_PIPS=2200;
extern bool OP=FALSE;
//+------------------------------------------------------------------+
//| Script program start function                                    |
//+------------------------------------------------------------------+
void OnStart()
  {
//---
   OP=ChartSetInteger(0,CHART_SCALEFIX,TRUE);
   OP=ChartSetDouble(0,CHART_FIXED_MAX,Bid*1.0066);
   OP=ChartSetDouble(0,CHART_FIXED_MIN,Bid/1.0066);   

  }
//+------------------------------------------------------------------+
