Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
How can I add Add KO and PEP to Benchmark the results are not good. and I only see one Graph
  # For this example, we're going to write a simple momentum script.  When the  
  # stock goes up quickly, we're going to buy; when it goes down quickly, we're  
  # going to sell.  Hopefully we'll ride the waves.

  # To run an algorithm in Quantopian, you need two functions: initialize and  
  # handle_data.


def initialize(context):  
  # This initialize function sets any data or variables that you'll use in  
  # your algorithm.  For instance, you'll want to define the security (or  
  # securities) you want to backtest.  You'll also want to define any  
  # parameters or values you're going to use.

  # In our example, we're looking at Apple.  If you re-type this line  
  # yourself, you'll see the auto-complete that is available for the  
  # security ID.  
  context.KO = sid(4283)  
  context.PEP = sid(5885)  
  # In these two lines, we set the maximum and minimum we want our algorithm  
  # to go long or short our security.  You don't have to set limits like this  
  # when you write an algorithm, but it's good practice.  
  context.max_notional = 1000000.1  
  context.min_notional = -1000000.0


def handle_data(context, data):  
  # This handle_data function is where the real work is done.  Our data is  
  # minute-level tick data, and each minute is called a frame.  This function  
  # runs on each frame of the data.  
  # We've built a handful of useful data transforms for you to use.  In this  
  # line, we're computing the volume-weighted-average-price of the security  
  # defined above, in the context.aapl variable.  For this example, we're  
  # specifying a three-day average.  
  vwap1 = data[context.KO].vwap(3)  
  vwap = data[context.PEP].vwap(3)  

  # We need a variable for the current price of the security to compare to  
  # the average.  
  price1 = data[context.KO].price  
  price = data[context.PEP].price  
  # Another powerful built-in feature of the Quantopian backtester is the  
  # portfolio object.  The portfolio ojbect tracks your positions, cash,  
  # cost basis of specific holdings, and more.  In this line, we calculate  
  # how long or short our position is at this minute.  
  notional1 = context.portfolio.positions[context.KO].amount * price1  
  notional = context.portfolio.positions[context.PEP].amount * price  
  # This is the meat of the algorithm, placed in this if statement.  If the  
  # price of the security is .5% less than the 3-day volume weighted average  
  # price AND we haven't reached our maximum short, then we call the order  
  # command and sell 100 shares.  Similarly, if the stock is .5% higher than  
  # the 3-day average AND we haven't reached our maximum long, then we call  
  # the order command and buy 100 shares.  
  if price1 < vwap1 * 0.995 and notional1 > context.min_notional:  
    order(context.KO,-100)  
  elif price1 > vwap1 * 1.005 and notional1 < context.max_notional:  
    order(context.KO,+100)  

  if price < vwap * 0.995 and notional > context.min_notional:  
    order(context.PEP,-100)  
  elif price > vwap * 1.005 and notional < context.max_notional:  
    order(context.PEP,+100)
3 responses

Got It the solution is :context.stocks = [sid(41290),sid(41425),sid(39479),sid(33972),sid(41159)]

Runtime exception: TypeError: unhashable type: 'list'

Hi Edgar:

Right now, our benchmark is simply the S&P 500. We are planning on adding the ability for you to choose other benchmarks, such as ETFs, but we haven't gotten there yet.

You're right, to get all trading events for five stocks, you just have to mention the five SIDs somewhere in your algo. We scan for all mentions of specific sids, like sid(41290), and make sure your algo gets fed events for that sid. Also, we're close to shipping a feature that lets you define a universe of stocks, so that you don't have to specifically mention the ones you are interested in.

As for your runtime exception, I'm not sure what's going on without seeing your algo code. Can you reply with the latest so that we can help you out?

thanks,
Jean Bredeche
Quantopian

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.