예제 #1
0
        private void GetLedgerTrades()
        {
            if (Ledger == null)
            {
                return;
            }

            new Task(() => Ledger.AsParallel().ForAll(ledge => AllPrices.Where(price => price.SymbolAsset == ledge.Asset).AsParallel().ForAll(pair => GetTrades(pair)))).Start();
        }