We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e741fe1 commit ca11aeaCopy full SHA for ca11aea
1 file changed
Common/Optimizer/OptimizationAnalysis.cs
@@ -16,6 +16,7 @@
16
17
using Newtonsoft.Json;
18
using System.Collections.Generic;
19
+using System.ComponentModel;
20
21
namespace QuantConnect.Optimizer
22
{
@@ -24,6 +25,13 @@ namespace QuantConnect.Optimizer
24
25
/// </summary>
26
public class OptimizationAnalysis
27
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
+
35
/// <summary>
36
/// Total number of backtests observed, including failures.
37
0 commit comments