5fd021996a
Benchmarks / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Regression Tests / build (push) Has been cancelled
Report Generator Tests / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled
Python Virtual Environments / build (push) Has been cancelled
API Tests / build (push) Has been cancelled
* Fix half of the CA1051 warnings This warning is about not declaring visible instance fields. There are something about 500 warnings in the solution, mostly in the QuantConnect and QuantConnect.Algorithm.CSharp projects. I aim to fix one of them in this PR and the other half of them in a second one. To fix it, I'm changing the visible instancce fields for properties. * fix bugs * Addressing minor reviews * More minor fixes --------- Co-authored-by: Martin Molinero <martin.molinero1@gmail.com>
206 lines
7.0 KiB
C#
206 lines
7.0 KiB
C#
/*
|
|
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
|
|
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*
|
|
*/
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
using QuantConnect.Orders;
|
|
using QuantConnect.Logging;
|
|
using QuantConnect.Securities;
|
|
using System.Collections.Generic;
|
|
|
|
namespace QuantConnect.Packets
|
|
{
|
|
/// <summary>
|
|
/// Live result packet from a lean engine algorithm.
|
|
/// </summary>
|
|
public class LiveResultPacket : Packet
|
|
{
|
|
/// <summary>
|
|
/// User Id sending result packet
|
|
/// </summary>
|
|
public int UserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Project Id of the result packet
|
|
/// </summary>
|
|
public int ProjectId { get; set; }
|
|
|
|
/// <summary>
|
|
/// User session Id who issued the result packet
|
|
/// </summary>
|
|
public string SessionId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Live Algorithm Id (DeployId) for this result packet
|
|
/// </summary>
|
|
public string DeployId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Compile Id algorithm which generated this result packet
|
|
/// </summary>
|
|
public string CompileId { get; set; } = string.Empty;
|
|
|
|
/// <summary>
|
|
/// Result data object for this result packet
|
|
/// </summary>
|
|
public LiveResult Results { get; set; } = new LiveResult();
|
|
|
|
/// <summary>
|
|
/// Processing time / running time for the live algorithm.
|
|
/// </summary>
|
|
public double ProcessingTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default constructor for JSON Serialization
|
|
/// </summary>
|
|
public LiveResultPacket()
|
|
: base(PacketType.LiveResult)
|
|
{ }
|
|
|
|
/// <summary>
|
|
/// Compose the packet from a JSON string:
|
|
/// </summary>
|
|
public LiveResultPacket(string json)
|
|
: base(PacketType.LiveResult)
|
|
{
|
|
try
|
|
{
|
|
var packet = JsonConvert.DeserializeObject<LiveResultPacket>(json);
|
|
CompileId = packet.CompileId;
|
|
Channel = packet.Channel;
|
|
SessionId = packet.SessionId;
|
|
DeployId = packet.DeployId;
|
|
Type = packet.Type;
|
|
UserId = packet.UserId;
|
|
ProjectId = packet.ProjectId;
|
|
Results = packet.Results;
|
|
ProcessingTime = packet.ProcessingTime;
|
|
}
|
|
catch (Exception err)
|
|
{
|
|
Log.Trace($"LiveResultPacket(): Error converting json: {err}");
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Compose Live Result Data Packet - With tradable dates
|
|
/// </summary>
|
|
/// <param name="job">Job that started this request</param>
|
|
/// <param name="results">Results class for the Backtest job</param>
|
|
public LiveResultPacket(LiveNodePacket job, LiveResult results)
|
|
:base (PacketType.LiveResult)
|
|
{
|
|
try
|
|
{
|
|
SessionId = job.SessionId;
|
|
CompileId = job.CompileId;
|
|
DeployId = job.DeployId;
|
|
Results = results;
|
|
UserId = job.UserId;
|
|
ProjectId = job.ProjectId;
|
|
SessionId = job.SessionId;
|
|
Channel = job.Channel;
|
|
}
|
|
catch (Exception err) {
|
|
Log.Error(err);
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an empty result packet, useful when the algorithm fails to initialize
|
|
/// </summary>
|
|
/// <param name="job">The associated job packet</param>
|
|
/// <returns>An empty result packet</returns>
|
|
public static LiveResultPacket CreateEmpty(LiveNodePacket job)
|
|
{
|
|
return new LiveResultPacket(job, new LiveResult(new LiveResultParameters(
|
|
new Dictionary<string, Chart>(), new Dictionary<int, Order>(), new Dictionary<DateTime, decimal>(),
|
|
new Dictionary<string, Holding>(), new CashBook(), new Dictionary<string, string>(),
|
|
new SortedDictionary<string, string>(), new List<OrderEvent>(), new Dictionary<string, string>(),
|
|
new AlgorithmConfiguration(), new Dictionary<string, string>())));
|
|
}
|
|
} // End Queue Packet:
|
|
|
|
|
|
/// <summary>
|
|
/// Live results object class for packaging live result data.
|
|
/// </summary>
|
|
public class LiveResult : Result
|
|
{
|
|
private CashBook _cashBook;
|
|
|
|
/// <summary>
|
|
/// Holdings dictionary of algorithm holdings information
|
|
/// </summary>
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public IDictionary<string, Holding> Holdings { get; set; }
|
|
|
|
/// <summary>
|
|
/// Cashbook for the algorithm's live results.
|
|
/// </summary>
|
|
[JsonIgnore]
|
|
public CashBook CashBook
|
|
{
|
|
get
|
|
{
|
|
return _cashBook;
|
|
}
|
|
set
|
|
{
|
|
_cashBook = value;
|
|
|
|
Cash = _cashBook?.ToDictionary(pair => pair.Key, pair => pair.Value);
|
|
AccountCurrency = CashBook?.AccountCurrency;
|
|
AccountCurrencySymbol = AccountCurrency != null ? Currencies.GetCurrencySymbol(AccountCurrency) : null;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Cash for the algorithm's live results.
|
|
/// </summary>
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public Dictionary<string, Cash> Cash { get; set; }
|
|
|
|
/// <summary>
|
|
/// The algorithm's account currency
|
|
/// </summary>
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string AccountCurrency { get; set; }
|
|
|
|
/// <summary>
|
|
/// The algorithm's account currency
|
|
/// </summary>
|
|
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
|
|
public string AccountCurrencySymbol { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default Constructor
|
|
/// </summary>
|
|
public LiveResult()
|
|
{ }
|
|
|
|
/// <summary>
|
|
/// Constructor for the result class for dictionary objects
|
|
/// </summary>
|
|
public LiveResult(LiveResultParameters parameters) : base(parameters)
|
|
{
|
|
Holdings = parameters.Holdings;
|
|
CashBook = parameters.CashBook;
|
|
}
|
|
}
|
|
} // End of Namespace:
|