Skip to content

Commit ca11aea

Browse files
committed
Add Interpretation member
1 parent e741fe1 commit ca11aea

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

Common/Optimizer/OptimizationAnalysis.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
using Newtonsoft.Json;
1818
using System.Collections.Generic;
19+
using System.ComponentModel;
1920

2021
namespace QuantConnect.Optimizer
2122
{
@@ -24,6 +25,13 @@ namespace QuantConnect.Optimizer
2425
/// </summary>
2526
public class OptimizationAnalysis
2627
{
28+
/// <summary>
29+
/// Natural-language interpretation of the analysis produced by a downstream AI consumer; empty until populated.
30+
/// </summary>
31+
[DefaultValue("")]
32+
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
33+
public string Interpretation { get; set; } = string.Empty;
34+
2735
/// <summary>
2836
/// Total number of backtests observed, including failures.
2937
/// </summary>

0 commit comments

Comments
 (0)