please i want to creat a code that caculate support and resisste levels

 

please i want to creat a code that caculate support and resisste levels for the code below in charte scale 5 can you help me please. here is the code :

int start()
{
  double S ;
   if (NewBar() == true)
   {
      int old_zone_count = zone_count;

      FastFractals();
      SlowFractals();
      DeleteZones();
      FindZones();
      DrawZones();
      if (zone_count < old_zone_count)
         DeleteOldGlobalVars(old_zone_count);
   }

   if (zone_show_info == true)
   {
      for (int i=0; i<zone_count; i++)
      {
         string lbl;
         if (zone_strength[i] == ZONE_PROVEN)
            lbl = "Proven";
         else if (zone_strength[i] == ZONE_VERIFIED)
            lbl = "Verified";
         else if (zone_strength[i] == ZONE_UNTESTED)
            lbl = "Untested";
         else if (zone_strength[i] == ZONE_TURNCOAT)
            lbl = "Turncoat";
         else
            lbl = "Weak";

         if (zone_type[i] == ZONE_SUPPORT)
            lbl = lbl + " "+sup_name;
         else
            lbl = lbl + " "+res_name;
            
         if (zone_hits[i] > 0 && zone_strength[i] > ZONE_UNTESTED)
         {
            if (zone_hits[i] == 1)
               lbl = lbl + ", "+test_name+"=" + zone_hits[i];
            else
               lbl = lbl + ", "+test_name+"=" + zone_hits[i];
         }
           
            
        


 
Celia Fashion:

please i want to creat a code that caculate support and resisste levels for the code below in charte scale 5 can you help me please. here is the code :

If you want to create the code then do it. Your code is a really good base :D
 
Petr Nosek:
If you want to create the code then do it. Your code is a really good base :D
thank you. but this code creat S/R levels but i want to create a counter for those S/R levels
 
Celia Fashion:
thank you. but this code creat S/R levels but i want to create a counter for those S/R levels
I don't want to argue with you if you believe that this code create anything. And if you want to create a counter of this anything do it.
Reason: