OBJ FIBO more than 32 custom level

 
Hello Expert, Is it possible to create level of fibonacci in mt4 more than 32 custom level?, cz every time I made more than 32 lvl, always comeback to default setting.

//+------------------------------------------------------------------+
//| Set number of levels and their parameters                        |
//+------------------------------------------------------------------+
void SetFiboLevels(
   string _object_name,                      // Object name
   const double &_levels_values[]            // Array of levels
) {
   int i,                                      // Current level counter
       levels_count=ArraySize(_levels_values); // Total number of levels

//--- Proceed with the implementation

//--- Set the quantity property for the current object
   ObjectSetInteger(0,_object_name,OBJPROP_LEVELS,levels_count);
//--- Set value, color and style for each level.
   for(i=0; i<levels_count; i++) {
         ObjectSetDouble(0,_object_name,OBJPROP_LEVELVALUE,i,_levels_values[i]);
         ObjectSetInteger(0,_object_name,OBJPROP_LEVELCOLOR,i,InpColor);
         ObjectSetInteger(0,_object_name,OBJPROP_LEVELSTYLE,i,InpStyle);
         ObjectSetInteger(0,_object_name,OBJPROP_LEVELWIDTH,i,InpWidth); }
//--- Redraw the chart before finishing
   ChartRedraw(0);
}
Reason: