i need help for this code

 

i want move text below low candel?

 string text= "my text string";
            datetime tim=iTime(_Symbol,PERIOD_CURRENT,1);
            string Name=string(tim);
            double price=iLow(_Symbol,PERIOD_CURRENT,1);
            ObjectCreate(0,Name,OBJ_TEXT,0,tim,price);
            ObjectSetString(0,Name,OBJPROP_TEXT,text);
            ObjectSetDouble(0,Name,OBJPROP_ANGLE,90);
            ObjectSetInteger(0,Name,OBJPROP_COLOR,clrBlue);
            ObjectSetInteger(0,Name,OBJPROP_FONTSIZE,7);
            ObjectSetString(0,Name,OBJPROP_FONT,"Arial");

            ObjectSetInteger(0,Name,OBJPROP_ANCHOR,ANCHOR_TOP);
           }