Lean  $LEAN_TAG$
Messages.Optimizer.Objectives.cs
1 /*
2  * QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
3  * Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14 */
15 
16 using System.Runtime.CompilerServices;
17 
18 namespace QuantConnect
19 {
20  /// <summary>
21  /// Provides user-facing message construction methods and static messages for the <see cref="Optimizer.Objectives"/> namespace
22  /// </summary>
23  public static partial class Messages
24  {
25  /// <summary>
26  /// Provides user-facing common messages for the <see cref="Optimizer.Objectives"/> namespace classes
27  /// </summary>
28  public static class OptimizerObjectivesCommon
29  {
30  public static string NullOrEmptyBacktestResult = "Backtest result can not be null or empty.";
31  }
32 
33  /// <summary>
34  /// Provides user-facing messages for the <see cref="Optimizer.Objectives.Constraint"/> class and its consumers or related classes
35  /// </summary>
36  public static class Constraint
37  {
38  public static string ConstraintTargetValueNotSpecified = "Constraint target value is not specified";
39  }
40 
41  /// <summary>
42  /// Provides user-facing messages for the <see cref="Optimizer.Objectives.ExtremumJsonConverter"/> class and its consumers or related classes
43  /// </summary>
44  public static class ExtremumJsonConverter
45  {
46  public static string UnrecognizedTargetDirection = "Could not recognize target direction";
47  }
48 
49  /// <summary>
50  /// Provides user-facing messages for the <see cref="Optimizer.Objectives.Objective"/> class and its consumers or related classes
51  /// </summary>
52  public static class Objective
53  {
54  public static string NullOrEmptyObjective = "Objective can not be null or empty";
55  }
56 
57  /// <summary>
58  /// Provides user-facing messages for the <see cref="Optimizer.Objectives.Target"/> class and its consumers or related classes
59  /// </summary>
60  public static class Target
61  {
62  [MethodImpl(MethodImplOptions.AggressiveInlining)]
63  public static string ToString(Optimizer.Objectives.Target instance)
64  {
65  if (instance.TargetValue.HasValue)
66  {
67  return $"Target: {instance.Target} TargetValue: {instance.TargetValue.Value} at: {instance.Current}";
68  }
69  return $"Target: {instance.Target} at: {instance.Current}";
70  }
71  }
72  }
73 }