public static IndicatorStyle fromValue(int value) {
   for (IndicatorStyle style : IndicatorStyle.values()) {
     if (style.value == value) {
       return style;
     }
   }
   return null;
 }