Lean  $LEAN_TAG$
FeeModelPythonWrapper.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 Python.Runtime;
19 
20 namespace QuantConnect.Python
21 {
22  /// <summary>
23  /// Provides an order fee model that wraps a <see cref="PyObject"/> object that represents a model that simulates order fees
24  /// </summary>
26  {
27  private readonly BasePythonWrapper<FeeModel> _model;
28  private bool _extendedVersion = true;
29 
30  /// <summary>
31  /// Constructor for initialising the <see cref="FeeModelPythonWrapper"/> class with wrapped <see cref="PyObject"/> object
32  /// </summary>
33  /// <param name="model">Represents a model that simulates order fees</param>
34  public FeeModelPythonWrapper(PyObject model)
35  {
36  _model = new BasePythonWrapper<FeeModel>(model, false);
37  }
38 
39  /// <summary>
40  /// Get the fee for this order
41  /// </summary>
42  /// <param name="parameters">A <see cref="OrderFeeParameters"/> object
43  /// containing the security and order</param>
44  /// <returns>The cost of the order in units of the account currency</returns>
45  public override OrderFee GetOrderFee(OrderFeeParameters parameters)
46  {
47  using (Py.GIL())
48  {
49  if (_extendedVersion)
50  {
51  try
52  {
53  return _model.InvokeMethod<OrderFee>(nameof(GetOrderFee), parameters);
54  }
55  catch (PythonException)
56  {
57  _extendedVersion = false;
58  }
59  }
60  var fee = _model.InvokeMethod<decimal>(nameof(GetOrderFee), parameters.Security, parameters.Order);
61  return new OrderFee(new CashAmount(fee, "USD"));
62  }
63  }
64  }
65 }