//+------------------------------------------------------------------+ //| Уровни круглых чисел.mq4 | //| Samura //| http://budobudda.wordpress.com/ | //+------------------------------------------------------------------+ #property copyright "Samura" #property link "http://budobudda.wordpress.com/" #property indicator_chart_window //---- input parameters extern color line_color=clrLightSteelBlue; extern int width= 2; extern double begin= 0.7; extern int count= 10; extern double step=0.1; //+------------------------------------------------------------------+ //| Custom indicator initialization function | //+------------------------------------------------------------------+ int init() { //---- indicators //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator deinitialization function | //+------------------------------------------------------------------+ int deinit() { //---- ObjectsDeleteAll(); // удаляем все объекты return(0); //---- return(0); } //+------------------------------------------------------------------+ //| Custom indicator iteration function | //+------------------------------------------------------------------+ int start() { double total=count*step; //--- for(double i=0; i