Merge pull request #92 from HojouFotytu/develop

Poloniex Market Ticks
This commit is contained in:
HojouFotytu 2019-03-14 05:44:33 +09:00 committed by GitHub
commit 7989610482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ namespace Core.MarketAnalyzer
new ParallelOptions { MaxDegreeOfParallelism = 5 },
(key) =>
{
if (!marketTicks.TryAdd(key, Bittrex.GetMarketTicks(key, systemConfiguration, log)))
if (!marketTicks.TryAdd(key, Poloniex.GetMarketTicks(key, systemConfiguration, log)))
{
// Failed to add ticks to dictionary
throw new Exception("Failed to add ticks for " + key + " to the memory dictionary, results may be incorrectly calculated!");