Hello, My Live Algorithm was running fine on a live node and I have been running it on and off for a couple of months now. I stopped the algo and restarted it without changing any code and I have been getting a runtime error:

 During the algorithm initialization, the following exception has occurred: Error getting cash balance from brokerage: An item with the same key has already been added. Key: XXBTAn item with the same key has already been added. Key: XXBT in BrokerageSetupHandler.cs:line 364 An item with the same key has already been added. Key: XXBT: StackTrace: An item with the same key has already been added. Key: XXBT in BrokerageSetupHandler.cs:line 364 An item with the same key has already been added. Key: XXBT 

I am not adding any securities called XXBT. I am only adding BTCUSD. Did anyone get this error? 

Tried redeploying several times but still same issue

  1. #region imports
  2.  using System;
  3.  using System.Collections;
  4.  using System.Collections.Generic;
  5.  using System.Linq;
  6.  using System.Globalization;
  7.  using System.Drawing;
  8.  using QuantConnect;
  9.  using QuantConnect.Algorithm.Framework;
  10.  using QuantConnect.Algorithm.Framework.Selection;
  11.  using QuantConnect.Algorithm.Framework.Alphas;
  12.  using QuantConnect.Algorithm.Framework.Portfolio;
  13.  using QuantConnect.Algorithm.Framework.Execution;
  14.  using QuantConnect.Algorithm.Framework.Risk;
  15.  using QuantConnect.Parameters;
  16.  using QuantConnect.Benchmarks;
  17.  using QuantConnect.Brokerages;
  18.  using QuantConnect.Util;
  19.  using QuantConnect.Interfaces;
  20.  using QuantConnect.Algorithm;
  21.  using QuantConnect.Indicators;
  22.  using QuantConnect.Data;
  23.  using QuantConnect.Data.Consolidators;
  24.  using QuantConnect.Data.Custom;
  25.  using QuantConnect.DataSource;
  26.  using QuantConnect.Data.Fundamental;
  27.  using QuantConnect.Data.Market;
  28.  using QuantConnect.Data.UniverseSelection;
  29.  using QuantConnect.Notifications;
  30.  using QuantConnect.Orders;
  31.  using QuantConnect.Orders.Fees;
  32.  using QuantConnect.Orders.Fills;
  33.  using QuantConnect.Orders.Slippage;
  34.  using QuantConnect.Scheduling;
  35.  using QuantConnect.Securities;
  36.  using QuantConnect.Securities.Equity;
  37.  using QuantConnect.Securities.Future;
  38.  using QuantConnect.Securities.Option;
  39.  using QuantConnect.Securities.Forex;
  40.  using QuantConnect.Securities.Crypto;
  41.  using QuantConnect.Securities.Interfaces;
  42.  using QuantConnect.Storage;
  43.  using QCAlgorithmFramework = QuantConnect.Algorithm.QCAlgorithm;
  44.  using QCAlgorithmFrameworkBridge = QuantConnect.Algorithm.QCAlgorithm;
  45. #endregion
  46. namespace QuantConnect.Algorithm.CSharp
  47. {
  48.  public class AlertTanParrot : QCAlgorithm
  49. {
  50.  public override void Initialize()
  51. {
  52.  SetAccountCurrency("USD");
  53. DefaultOrderProperties = new KrakenOrderProperties
  54. {
  55.  TimeInForce = TimeInForce.GoodTilCanceled,
  56.  PostOnly = false,
  57.  FeeInBase = false,
  58.  FeeInQuote = true,
  59.  NoMarketPriceProtection = true
  60. };
  61. // EnableAutomaticIndicatorWarmUp = true;
  62.  try{
  63.  SetBrokerageModel(BrokerageName.Kraken, AccountType.Margin);
  64. }
  65.  catch(Exception x)
  66. {
  67.  Log("Exception During Setbrokerage Model "+ x.Message);
  68. }
  69.  var a = AddCrypto("BTCUSD", Resolution.Minute, Market.Kraken );
  70.  Securities["BTCUSD"].FeeModel = new KrakenFeeModel();
  71.  SetCash(100000);  //Set Strategy Cash
  72.  var startime = new DateTime(2023,01,01);
  73.  SetStartDate(startime);
  74.  SetEndDate(2022,11,8);
  75.  SetEndDate(startime.AddDays(5)); // Set end date to last week
  76.  Portfolio.MarginCallModel = MarginCallModel.Null;
  77.  SetCash(100000);
  78.  SetStartDate(2022, 8, 11);
  79.  SetCash(100000);
  80. }
  81.  /// OnData event is the primary entry point for your algorithm. Each new data point will be pumped in here.
  82.  /// Slice object keyed by symbol containing the stock data
  83.  public override void OnData(Slice data)
  84. {
  85.  if (!Portfolio.Invested)
  86. {
  87. //  SetHoldings("SPY", 0.33);
  88. //  SetHoldings("BND", 0.33);
  89. .// SetHoldings("AAPL", 0.33);
  90. }
  91. }
  92. }
  93. }
+ Expand

Author

Ahmed Elmiligui

February 2024