Lean  $LEAN_TAG$
Extremum.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;
17 using Newtonsoft.Json;
18 
20 {
21  /// <summary>
22  /// Define the way to compare current real-values and the new one (candidates).
23  /// It's encapsulated in different abstraction to allow configure the direction of optimization, i.e. max or min.
24  /// </summary>
25  [JsonConverter(typeof(ExtremumJsonConverter))]
26  public class Extremum
27  {
28  private Func<decimal, decimal, bool> _comparer;
29 
30  /// <summary>
31  /// Create an instance of <see cref="Extremum"/> to compare values.
32  /// </summary>
33  /// <param name="comparer">The way old and new values should be compared</param>
34  public Extremum(Func<decimal, decimal, bool> comparer)
35  {
36  _comparer = comparer;
37  }
38 
39  /// <summary>
40  /// Compares two values; identifies whether condition is met or not.
41  /// </summary>
42  /// <param name="current">Left operand</param>
43  /// <param name="candidate">Right operand</param>
44  /// <returns>Returns the result of comparer with this arguments</returns>
45  public bool Better(decimal current, decimal candidate) => _comparer(current, candidate);
46  }
47 }