Files
quantconnect--lean/Common/Python/Wrappers/BrokerageModelPythonWrapper.cs
T

200 lines
7.6 KiB
C#

/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
using Python.Runtime;
using QuantConnect.Brokerages;
using QuantConnect.Data.Market;
using QuantConnect.Orders;
using QuantConnect.Orders.Fees;
using QuantConnect.Orders.Fills;
using QuantConnect.Orders.Slippage;
using QuantConnect.Securities;
using System.Collections.Generic;
using System.Linq;
namespace QuantConnect.Python.Wrappers
{
/// <summary>
/// Wrapper for an <see cref = "IBrokerageModel"/> instance created in Python.
/// All calls to python should be inside a "using (Py.GIL()) {/* Your code here */}" block.
/// </summary>
class BrokerageModelPythonWrapper : IBrokerageModel
{
private IBrokerageModel _brokerageModel;
/// <summary>
/// <see cref = "BrokerageModelPythonWrapper"/> constructor.
/// Wraps the <see cref = "IBrokerageModel"/> object.
/// </summary>
/// <param name="brokegeModel"><see cref = "IBrokerageModel"/> object to be wrapped</param>
public BrokerageModelPythonWrapper(IBrokerageModel brokegeModel)
{
_brokerageModel = brokegeModel;
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.AccountType" /> in Python
/// </summary>
public AccountType AccountType
{
get
{
using (Py.GIL())
{
return _brokerageModel.AccountType;
}
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.DefaultMarkets" /> in Python
/// </summary>
public IReadOnlyDictionary<SecurityType, string> DefaultMarkets
{
get
{
using (Py.GIL())
{
return _brokerageModel.DefaultMarkets.ToDictionary(x => x.Key, x => x.Value);
}
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.ApplySplit" /> in Python
/// </summary>
/// <param name="tickets">The open tickets matching the split event</param>
/// <param name="split">The split event data</param>
public void ApplySplit(List<OrderTicket> tickets, Split split)
{
using (Py.GIL())
{
_brokerageModel.ApplySplit(tickets, split);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.CanExecuteOrder" /> in Python
/// </summary>
/// <param name="security">The security being ordered</param>
/// <param name="order">The order to test for execution</param>
/// <returns>True if the brokerage would be able to perform the execution, false otherwise</returns>
public bool CanExecuteOrder(Security security, Order order)
{
using (Py.GIL())
{
return _brokerageModel.CanExecuteOrder(security, order);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.CanSubmitOrder" /> in Python
/// </summary>
/// <param name="security">The security being ordered</param>
/// <param name="order">The order to be processed</param>
/// <param name="message">If this function returns false, a brokerage message detailing why the order may not be submitted</param>
/// <returns>True if the brokerage could process the order, false otherwise</returns>
public bool CanSubmitOrder(Security security, Order order, out BrokerageMessageEvent message)
{
using (Py.GIL())
{
return _brokerageModel.CanSubmitOrder(security, order, out message);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.CanUpdateOrder" /> in Python
/// </summary>
/// <param name="security">The security of the order</param>
/// <param name="order">The order to be updated</param>
/// <param name="request">The requested updated to be made to the order</param>
/// <param name="message">If this function returns false, a brokerage message detailing why the order may not be updated</param>
/// <returns>True if the brokerage would allow updating the order, false otherwise</returns>
public bool CanUpdateOrder(Security security, Order order, UpdateOrderRequest request, out BrokerageMessageEvent message)
{
using (Py.GIL())
{
return _brokerageModel.CanUpdateOrder(security, order, request, out message);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.GetFeeModel" /> in Python
/// </summary>
/// <param name="security">The security to get a fee model for</param>
/// <returns>The new fee model for this brokerage</returns>
public IFeeModel GetFeeModel(Security security)
{
using (Py.GIL())
{
return _brokerageModel.GetFeeModel(security);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.GetFillModel" /> in Python
/// </summary>
/// <param name="security">The security to get fill model for</param>
/// <returns>The new fill model for this brokerage</returns>
public IFillModel GetFillModel(Security security)
{
using (Py.GIL())
{
return _brokerageModel.GetFillModel(security);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.GetLeverage" /> in Python
/// </summary>
/// <param name="security">The security's whose leverage we seek</param>
/// <returns>The leverage for the specified security</returns>
public decimal GetLeverage(Security security)
{
using (Py.GIL())
{
return _brokerageModel.GetLeverage(security);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.GetSettlementModel" /> in Python
/// </summary>
/// <param name="security">The security to get a settlement model for</param>
/// <param name="accountType">The account type</param>
/// <returns>The settlement model for this brokerage</returns>
public ISettlementModel GetSettlementModel(Security security, AccountType accountType)
{
using (Py.GIL())
{
return _brokerageModel.GetSettlementModel(security, AccountType);
}
}
/// <summary>
/// Wrapper for <see cref = "IBrokerageModel.GetSlippageModel" /> in Python
/// </summary>
/// <param name="security">The security to get a slippage model for</param>
/// <returns>The new slippage model for this brokerage</returns>
public ISlippageModel GetSlippageModel(Security security)
{
using (Py.GIL())
{
return _brokerageModel.GetSlippageModel(security);
}
}
}
}