546afd2a61
Syntax Tests / build (push) Has been cancelled
API Tests / build (push) Has been cancelled
Benchmarks / build (push) Has been cancelled
Build & Test Lean / build (push) Has been cancelled
Regression Tests / build (push) Has been cancelled
Report Generator Tests / build (push) Has been cancelled
Research Regression Tests / build (push) Has been cancelled
Python Virtual Environments / build (push) Has been cancelled
* Changed default async to true and passed target.Tag * Make execution models place orders asynchronously if specified * Add unit tests * Execution model default to asynchronous orders. Also, minor fixes for tickets remaining fill quantity potential race conditions * Add SecurityHolding.UnrealizedQuantity property It gets the holding quantity the security will have once all open orders are filled. Added for thread safety reasons when execution models place asynchronous orders and need to calculate the actual quantity needed to reach the target of there are open orders * Some cleanup * Adjust projected holdings quantity on splits * Minor fix * More changes and cleanup * Minor fix * Improvements for thread safety * Add IOrderProvider.GetProjectedHoldings to get projected holdings atomically * Minor unit tests fix * Add ProjectedHoldings DTO class * Address peer review --------- Co-authored-by: arthiondaena <arthiondaena@gmail.com>
53 lines
2.8 KiB
Python
53 lines
2.8 KiB
Python
# 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.
|
|
|
|
from AlgorithmImports import *
|
|
|
|
class ImmediateExecutionModel(ExecutionModel):
|
|
'''Provides an implementation of IExecutionModel that immediately submits market orders to achieve the desired portfolio targets'''
|
|
|
|
def __init__(self, asynchronous=True):
|
|
'''Initializes a new instance of the ImmediateExecutionModel class.
|
|
Args:
|
|
asynchronous: If True, orders will be submitted asynchronously.'''
|
|
super().__init__(asynchronous)
|
|
self.targets_collection = PortfolioTargetCollection()
|
|
|
|
def execute(self, algorithm, targets):
|
|
'''Immediately submits orders for the specified portfolio targets.
|
|
Args:
|
|
algorithm: The algorithm instance
|
|
targets: The portfolio targets to be ordered'''
|
|
# for performance we check count value, OrderByMarginImpact and ClearFulfilled are expensive to call
|
|
self.targets_collection.add_range(targets)
|
|
if not self.targets_collection.is_empty:
|
|
for target in self.targets_collection.order_by_margin_impact(algorithm):
|
|
security = algorithm.securities[target.symbol]
|
|
# calculate remaining quantity to be ordered
|
|
quantity = OrderSizing.get_unordered_quantity(algorithm, target, security, True)
|
|
|
|
if quantity != 0:
|
|
above_minimum_portfolio = BuyingPowerModelExtensions.above_minimum_order_margin_portfolio_percentage(
|
|
security.buying_power_model,
|
|
security,
|
|
quantity,
|
|
algorithm.portfolio,
|
|
algorithm.settings.minimum_order_margin_portfolio_percentage)
|
|
if above_minimum_portfolio:
|
|
algorithm.market_order(security, quantity, self.asynchronous, target.tag)
|
|
elif not PortfolioTarget.minimum_order_margin_percentage_warning_sent:
|
|
# will trigger the warning if it has not already been sent
|
|
PortfolioTarget.minimum_order_margin_percentage_warning_sent = False
|
|
|
|
self.targets_collection.clear_fulfilled(algorithm)
|