void LoadStockData(DataCandle candle)
 {
     stockData = new float[candle.c.Length];
     for (int i = 0; i < stockData.Length; i++)
     {
         stockData[i] = (candle.o[i] + candle.c[i]) / 2;
     }
     ShowStockData();
 }
 void Interpret(DataCandle candle)
 {
     Debug.Log(candle.c[candle.c.Length - 1]);
 }