double s=999999999;
string imya;
int start(){
double wp=WindowPriceOnDropped();
int obj=ObjectsTotal();
//+------------------------------------------------------------------+
for(int i=0;i<obj;i++)
{
string name=ObjectName(i);
if(ObjectType(name)!=OBJ_FIBO)continue;
double P=ObjectGet(name,OBJPROP_PRICE2);
double r=MathAbs(P-wp);
if(r<s){s=r;imya=name;}
}
//+------------------------------------------------------------------+
ObjectSet(imya,OBJPROP_LEVELCOLOR,Blue);
//+------------------------------------------------------------------+
return;}
//+------------------------------------------------------------------+
Comments