Example #1
0
        public void Inicialize()
        {
            ChartBackground = new SolidColorBrush(Color.FromRgb(30, 30, 30));
            TickSize        = 0.01;
            BaseFontSize    = 18;
            FontBrush       = Brushes.White;
            LinesThickness  = 1;
            LinesBrush      = Brushes.DarkGray;

            Binance ex = new Binance();

            //ex.GeneralInfo();

            NewCandles = ex.GetCandles("ETH", "USDT", CandleIntervalKey.m15).Select(c => c).ToList();
        }