Lean  $LEAN_TAG$
Messages.Optimizer.Parameters.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.Parameters"/> namespace
22  /// </summary>
23  public static partial class Messages
24  {
25  /// <summary>
26  /// Provides user-facing messages for the <see cref="Optimizer.Parameters.OptimizationParameterJsonConverter"/> class and its consumers or related classes
27  /// </summary>
29  {
30  /// <summary>
31  /// String message saying optimization parameter name is not specified
32  /// </summary>
33  public static string OptimizationParameterNotSpecified = "Optimization parameter name is not specified.";
34 
35  /// <summary>
36  /// String message saying optimization parameter is not currently supported
37  /// </summary>
38  public static string OptimizationParameterNotSupported = "Optimization parameter is not currently supported.";
39  }
40 
41  /// <summary>
42  /// Provides user-facing messages for the <see cref="Optimizer.Parameters.OptimizationStepParameter"/> class and its consumers or related classes
43  /// </summary>
44  public static class OptimizationStepParameter
45  {
46  /// <summary>
47  /// String message saying the step should be great or equal than minStep
48  /// </summary>
49  public static string StepLessThanMinStep = $"step should be great or equal than minStep";
50 
51  /// <summary>
52  /// Returns a string message saying the step range is invalid
53  /// </summary>
54  [MethodImpl(MethodImplOptions.AggressiveInlining)]
55  public static string InvalidStepRange(decimal min, decimal max)
56  {
57  return $"Minimum value ({min}) should be less or equal than maximum ({max})";
58  }
59 
60  /// <summary>
61  /// Returns a string message saying the step should be positive value
62  /// </summary>
63  [MethodImpl(MethodImplOptions.AggressiveInlining)]
64  public static string NonPositiveStepValue(string stepVarName, decimal value)
65  {
66  return $"{stepVarName} should be positive value; but was {value}";
67  }
68  }
69  }
70 }