Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Buying a basket of stocks based on another ETF's price?

Hi,

New guy here. I'm having a hard time figuring out how to buy a basket of stocks based on an ETF's price. As an example, say I want to buy AAPL, CRM and VOD when the current price of QQQ crosses the 50 day MAVG of QQQ. And then sell all shares when it goes below the MAVG. This is what I have so far, and it isn't working. Thanks in advance...

#############################################
def initialize(context):

    context.qqq = symbol('QQQ')  
    context.aapl = symbol('AAPL')  
    context.crm = symbol('CRM')  
    context.vod = symbol('VOD')

    set_benchmark(sid(19920)) # QQQ

  def handle_data(context, data):

    average_price = data[context.qqq].mavg(50)  
    current_price = data[context.qqq].price  
    cash = context.portfolio.cash  


    if current_price > 1.003*average_price and cash > current_price:  
        # Need to know how many shares we can buy  
        number_of_shares = int(cash/current_price)  
        # Place the buy order (positive means buy, negative means sell)  
        order_percent(symbol('AAPL'), .333)(symbol('CRM'), .333)(symbol('VOD'), .334)  
    elif current_price < 0.997*average_price:  
        # Sell all of our shares by setting the target position to zero  
        order_target(symbol('AAPL'), 0)(symbol('CRM'), 0)(symbol('VOD'), 0)  
2 responses

Hi Kris,

The problem is order_target_percent accepts only one stock at a time. So I created a list of stocks and then looped through it to achieve the desired percentage (see lines 24 and 29). The algo will hold equal weight of 0.33 of each stock.

If you want to create customized weights, you can create a dictionary of stocks and weights. Or explicitly specify them like in this example: https://www.quantopian.com/posts/diversified-portfolio-monthly-rebalance-for-live-trading

Let me know if you need any more help,
Alisa

Disclaimer

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.

Thank you so much, Alisa. This is great!