How do I set a limit on how much the algorithm can buy?
Thanks,
Vai
How do I set a limit on how much the algorithm can buy?
Thanks,
Vai
The logic in your code is pretty hard to follow. You might want to take a step back and rewrite it based on what you intend for it to do.
Also, buys can take a little while to execute, especially when you're doing an order that isn't a market order, and your algorithm might fire again while waiting for the first order to go through. I don't see anything in your code that limits the frequency of trades or the like, so it's probably the case that your algorithm is issuing a buy, then a inute later issues another buy before the first one went through.
Hi Vaibhav,
There are a couple of trading guards we provide you to make this task a little easier. The one you are probably most concerned with is:
set_max_order_size(symbol('SPY'), max_notional=1000.0)
Let me know if you have any questions on how to use this
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.
The "negative cash" problem is trivial to fix - you were trading again with an order already open. You can fix that by putting the following as the first line in your handle_data() function:
if get_open_orders():
return
This will skip the whole frame whenever there is an open order.
But when I make that change, your algorithm doesn't actually do very much.