Skip to content

Commit

Permalink
rename: plus to commit 4135c91
Browse files Browse the repository at this point in the history
  • Loading branch information
Romazes committed Jan 2, 2024
1 parent 42c1058 commit ef35617
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Configuration/LeanArgumentParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ public static class LeanArgumentParser
new CommandLineOption("iqfeed-version", CommandOptionType.SingleValue),

// coinbase configuration
new CommandLineOption("coinbase-api-url", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-websocket-url", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-rest-api", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-url", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-api-key", CommandOptionType.SingleValue),
new CommandLineOption("coinbase-api-secret", CommandOptionType.SingleValue),

Expand Down
8 changes: 4 additions & 4 deletions Tests/Api/LiveTradingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@ public void LiveCoinbaseTest()
{
var key = Config.Get("coinbase-api-key");
var secretKey = Config.Get("coinbase-api-secret");
var apiUrl = Config.Get("coinbase-api-url");
var wsUrl = Config.Get("coinbase-websocket-url");
var apiUrl = Config.Get("coinbase-rest-api");
var wsUrl = Config.Get("coinbase-url");

// Create default algorithm settings
var settings = new CoinbaseLiveAlgorithmSettings(key, secretKey, new Uri(apiUrl), new Uri(wsUrl));
Expand Down Expand Up @@ -251,8 +251,8 @@ public void LiveAlgorithmSettings_CanBeCreated_Successfully()
case BrokerageName.Coinbase:
key = Config.Get("coinbase-api-key");
secretKey = Config.Get("coinbase-api-secret");
var apiUrl = Config.Get("coinbase-api-url");
var wsUrl = Config.Get("coinbase-websocket-url");
var apiUrl = Config.Get("coinbase-rest-api");
var wsUrl = Config.Get("coinbase-url");

settings = new CoinbaseLiveAlgorithmSettings(key, secretKey, new Uri(apiUrl), new Uri(wsUrl));
break;
Expand Down

0 comments on commit ef35617

Please sign in to comment.