Beispiel #1
0
 // Get's the Binance stats
 private void getStats()
 {
     while (true)
     {
         this.Dispatcher.BeginInvoke(new Action(() =>
         {
             BinanceEndpoints.FuturesAccountInformation();
         }));
         Thread.Sleep(TimeSpan.FromSeconds(5));
     }
 }