Update regression algorithms

This commit is contained in:
Jhonathan Abreu
2025-10-17 10:58:41 -04:00
parent 0678de396d
commit 30c19e22a8
24 changed files with 62 additions and 99 deletions
@@ -24,7 +24,7 @@ namespace QuantConnect.Algorithm.CSharp
{
/// <summary>
/// This algorithm sends an array of current portfolio targets to Numerai API
/// every time the ema indicators crosses between themselves.
/// every time the ema indicators crosses between themselves.
/// See (https://docs.numer.ai/numerai-signals/signals-overview) for more information
/// about accepted symbols, signals, etc.
/// </summary>
@@ -41,8 +41,6 @@ namespace QuantConnect.Algorithm.CSharp
SetEndDate(2020, 10, 12); // Set End Date
SetCash(100000); // Set Strategy Cash
SetSecurityInitializer(new BrokerageModelSecurityInitializer(BrokerageModel, new FuncSecuritySeeder(GetLastKnownPrices)));
// Add the CRSP US Total Market Index constituents, which represents approximately 100% of the investable US Equity market
_etfSymbol = AddEquity("VTI").Symbol;
AddUniverse(Universe.ETF(_etfSymbol));
@@ -63,7 +61,7 @@ namespace QuantConnect.Algorithm.CSharp
// and created a model. See (https://signals.numer.ai/models)
var numeraiModelId = "";
var numeraiFilename = ""; // (Optional) Replace this value with your submission filename
var numeraiFilename = ""; // (Optional) Replace this value with your submission filename
// Disable automatic exports as we manually set them
SignalExport.AutomaticExportTimeSpan = null;