Hi,
Do these types of orders supposed to work in backtests?
I'm passing this code:
order_id = order(sid, qty, style=StopOrder(stopPrice))
and finding that order_id is of NoneType and don't understand why.
Any ideas?
Cheers,
Andrew
Hi,
Do these types of orders supposed to work in backtests?
I'm passing this code:
order_id = order(sid, qty, style=StopOrder(stopPrice))
and finding that order_id is of NoneType and don't understand why.
Any ideas?
Cheers,
Andrew
Think I've discovered what is going wrong. qty is set to 0!
However, could someone confirm that this type of order is catered for in the backtest?
Thanks,
Andrew
Hello Andrew,
Seems to work, although it is left as an exercise to show that the limit is triggered at the correct price.
As a note, if you are looking ahead to live trading, I believe that stop orders are not sent to the broker, but are rather handled by Quantopian, based on their price feed. Once the limit price is reached, then a market order is triggered and sent to the broker. However, this behavior may have changed. Quantopian support, if you read this, perhaps you could clarify, or point to the applicable documentation.
Grant
def initialize(context):
context.spy = symbol('SPY')
context.stopPrice = 203.33
context.buy_submitted = False
context.sell_submitted = False
context.print_orders = False
context.orders = []
def handle_data(context, data):
if not context.buy_submitted:
order_id = order(context.spy, 100)
context.orders.append(order_id)
context.buy_submitted = True
print 'Buy order submitted'
if context.portfolio.positions[context.spy].amount != 0 and not context.sell_submitted:
order_id = order(context.spy, -100, style=StopOrder(context.stopPrice))
context.orders.append(order_id)
context.sell_submitted = True
print 'Stop loss order submitted'
if context.sell_submitted and context.portfolio.positions[context.spy].amount == 0 and not context.print_orders:
for order_id in context.orders:
print get_order(order_id)
context.print_orders = True
Hi Grant, Andrew - In live trading, the StopOrder (and all other order types) are sent directly to the broker. We send the order immediately to IB and they fill it based on your specified parameters.
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by Quantopian. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action as none of Quantopian nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to Quantopian about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. Quantopian makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances.
Alisa,
Thanks for clarifying. I went back to https://www.quantopian.com/posts/usage-and-syntax-of-stop-orders and reviewed Rich Frank's guidance, which is consistent with your statement above.
Sorry if I created any confusion.
Grant
Not a problem, happy to clear it up!
The material on this website is provided for informational purposes only and does not constitute an offer to sell, a solicitation to buy, or a recommendation or endorsement for any security or strategy, nor does it constitute an offer to provide investment advisory services by Quantopian. In addition, the material offers no opinion with respect to the suitability of any security or specific investment. No information contained herein should be regarded as a suggestion to engage in or refrain from any investment-related course of action as none of Quantopian nor any of its affiliates is undertaking to provide investment advice, act as an adviser to any plan or entity subject to the Employee Retirement Income Security Act of 1974, as amended, individual retirement account or individual retirement annuity, or give advice in a fiduciary capacity with respect to the materials presented herein. If you are an individual retirement or other investor, contact your financial advisor or other fiduciary unrelated to Quantopian about whether any given investment idea, strategy, product or service described herein may be appropriate for your circumstances. All investments involve risk, including loss of principal. Quantopian makes no guarantees as to the accuracy or completeness of the views expressed in the website. The views are subject to change, and may have become unreliable for various reasons, including changes in market conditions or economic circumstances.