Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
How to access Data in Pipeline Custom Factor

I am trying to create Bollinger Bands in a Custom Factor for my pipeline but I cannot access data from there and I can't pass it either because you can't have data in the def initialize(context) function, which is where make_pipeline is called. Any help would be appreciate, as I need to have historical price data to put into talib.BBands.

Thanks

class CalculateFactors(CustomFactor):  
    inputs = [USEquityPricing.close]  
    window_length = 10  
    outputs = ['upper', 'middle', 'lower']  
    def compute(self, today, assets, out, close):  
        hist = data.history(assets, 'price', 10, '1d')  #returns NameError: global name 'data' is not defined  
        upper, middle, lower = talib.BBands(hist, timeperiod = 100, nbdevup = 2, nbdevdn = 2, matype = 0)  
        out.upper[:] = upper[-1]  
        out.middle[:] = middle[-1]  
        out.lower[:] = lower[-1]  
1 response

Hi Zachary,

To get data in a CustomFactor, you need to use the datasets/columns that you get from the inputs variable. In your case, it's called close. You can learn more about custom factors in lesson 10 of the Pipeline Tutorial.

That being said, you might just want to use the built-in Bollinger Band Factor.

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.