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  public static string OptimizationParameterNotSpecified = "Optimization parameter name is not specified.";
31 
32  public static string OptimizationParameterNotSupported = "Optimization parameter is not currently supported.";
33  }
34 
35  /// <summary>
36  /// Provides user-facing messages for the <see cref="Optimizer.Parameters.OptimizationStepParameter"/> class and its consumers or related classes
37  /// </summary>
38  public static class OptimizationStepParameter
39  {
40  public static string StepLessThanMinStep = $"step should be great or equal than minStep";
41 
42  [MethodImpl(MethodImplOptions.AggressiveInlining)]
43  public static string InvalidStepRange(decimal min, decimal max)
44  {
45  return $"Minimum value ({min}) should be less or equal than maximum ({max})";
46  }
47 
48  [MethodImpl(MethodImplOptions.AggressiveInlining)]
49  public static string NonPositiveStepValue(string stepVarName, decimal value)
50  {
51  return $"{stepVarName} should be positive value; but was {value}";
52  }
53  }
54  }
55 }