Mixing color support?

So I currently have a ZoneStar Z9V5Pro-MK4 with their hotend ZONESTAR M4V6 the 6th Version M4 4-IN-1-OUT color Mix

I want to be able to keep 16 color mixing



 * "Mixing Extruder"
 *   - Adds G-codes M163 and M164 to set and "commit" the current mix factors.
 *   - Extends the stepping routines to move multiple steppers in proportion to the mix.
 *   - Optional support for Repetier Firmware's 'M164 S<index>' supporting virtual tools.
 *   - This implementation supports up to two mixing extruders.
 *   - Enable DIRECT_MIXING_IN_G1 for M165 and mixing in G1 (from Pia Taubert's reference implementation).
 */
#define MIXING_EXTRUDER
#if ENABLED(MIXING_EXTRUDER)  
  #define MIXING_STEPPERS 	  4  		// Number of steppers in your mixing extruder
  #define MIXING_VIRTUAL_TOOLS 16  		// Use the Virtual Tool method with M163 and M164
  #define USE_PRECENT_MIXVALUE			// Use percent mix data on LCD setting and gcode command
  #define MIX_STATUS_SCREEN_IMAGE		// show mix rate ICON and data in LCD (only applied in LCD12864)
  #if ENABLED(MIX_STATUS_SCREEN_IMAGE) && DISABLED(CUSTOM_STATUS_SCREEN_IMAGE)
  #define CUSTOM_STATUS_SCREEN_IMAGE
  #endif  
  //#define DIRECT_MIXING_IN_G1    		// Allow ABCDHI mix factors in G1 movement commands
  #define GRADIENT_MIX           		// Support for gradient mixing with M166 and LCD
  #define RANDOM_MIX					// Support for random mixing with M167 and LCD
  #if ENABLED(GRADIENT_MIX)
    //#define GRADIENT_VTOOL       		// Add M166 T to use a V-tool index as a Gradient alias
  #endif
#endif

// Offset of the extruders (uncomment if using more than one and relying on firmware to position when changing).
// The offset has to be X=0, Y=0 for the extruder 0 hotend (default extruder).
// For the other hotends it is their distance from the extruder 0 hotend.
//#define HOTEND_OFFSET_X { 0.0, 20.00 } // (mm) relative X-offset for each nozzle
//#define HOTEND_OFFSET_Y { 0.0, 5.00 }  // (mm) relative Y-offset for each nozzle
//#define HOTEND_OFFSET_Z { 0.0, 0.00 }  // (mm) relative Z-offset for each nozzle

// @section machine

/**
2 Likes