Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Getting errors in RollingLinearRegressionOfReturns

I was experimenting pipeline and thought shorting using "alpha" would be helpful
but stuck with the error.

target=Equity(8554) is not working as shown in API documentation

Thanks in advance.

# Import the libraries we will use here.  
from quantopian.algorithm import attach_pipeline, pipeline_output  
from quantopian.pipeline import Pipeline  
from quantopian.pipeline.data.builtin import USEquityPricing  
from quantopian.pipeline.factors import AverageDollarVolume, Returns  
from quantopian.pipeline.factors import RollingLinearRegressionOfReturns


def initialize(context):  
    """  
    Called once at the start of the program. Any one-time  
    startup logic goes here.  
    """  
    # Define context variables that can be accessed in other methods of  
    # the algorithm.  
    context.long_leverage = 0.5  
    context.short_leverage = -0.5  
    context.returns_lookback = 15

    # Rebalance on the first trading day of each week at 11AM.  
    schedule_function(rebalance,  
                      date_rules.week_start(days_offset=4),  
                      time_rules.market_open(hours=1, minutes=30))  
    schedule_function(rebalance,  
                      date_rules.week_start(days_offset=1),  
                      time_rules.market_open(hours=1, minutes=30))

    # Record tracking variables at the end of each day.  
    schedule_function(record_vars,  
                      date_rules.every_day(),  
                      time_rules.market_close(minutes=1))

    # Create and attach our pipeline (dynamic stock selector), defined below.  
    attach_pipeline(make_pipeline(context), 'mean_reversion_example')


def make_pipeline(context):  
    """  
    A function to create our pipeline (dynamic stock selector). The pipeline is used  
    to rank stocks based on different factors, including builtin factors, or custom  
    factors that you can define. Documentation on pipeline can be found here:  
    https://www.quantopian.com/help#pipeline-title  
    """  
    # Create a pipeline object.

    # Create a dollar_volume factor using default inputs and window_length.  
    # This is a builtin factor.  
    dollar_volume = AverageDollarVolume(window_length=1)

    # Define high dollar-volume filter to be the top 5% of stocks by dollar volume.  
    high_dollar_volume = dollar_volume.percentile_between(90, 100)  
    # Create a recent_returns factor with a 5-day returns lookback for all securities  
    # in our high_dollar_volume Filter. This is a custom factor defined below (see  
    # RecentReturns class).  
    recent_returns = Returns(window_length=context.returns_lookback, mask=high_dollar_volume)  
    regression_factor = RollingLinearRegressionOfReturns(  
    target= context.data[sid(8554)], #does not take target=Equity(8554) as input  
    returns_length=context.returns_lookback,  
    regression_length=5,  
    )  
    low_returns = regression_factor.alpha.percentile_between(0,10)  
    high_returns = regression_factor.alpha.percentile_between(90,100)

    # Define high and low returns filters to be the bottom 10% and top 10% of  
    # securities in the high dollar-volume group.  
    '''  
    low_returns = recent_returns.percentile_between(0,10)  
    high_returns = recent_returns.percentile_between(90,100)  

    high_returns = recent_returns.percentile_between(0,5)  
    low_returns = recent_returns.percentile_between(95,100)'''


    # Define a column dictionary that holds all the Factors  
    pipe_columns = {  
            'low_returns':low_returns,  
            'high_returns':high_returns,  
            'recent_returns':recent_returns,  
            'dollar_volume':dollar_volume  
            }

    # Add a filter to the pipeline such that only high-return and low-return  
    # securities are kept.  
    pipe_screen = (low_returns | high_returns)

    # Create a pipeline object with the defined columns and screen.  
    pipe = Pipeline(columns=pipe_columns,screen=pipe_screen)

    return pipe

def before_trading_start(context, data):  
    """  
    Called every day before market open. This is where we get the securities  
    that made it through the pipeline.  
    """

    # Pipeline_output returns a pandas DataFrame with the results of our factors  
    # and filters.  
    context.output = pipeline_output('mean_reversion_example')

    # Sets the list of securities we want to long as the securities with a 'True'  
    # value in the low_returns column.  
    context.long_secs = context.output[context.output['low_returns']]

    # Sets the list of securities we want to short as the securities with a 'True'  
    # value in the high_returns column.  
    context.short_secs = context.output[context.output['high_returns']]

    # A list of the securities that we want to order today.  
    context.security_list = context.long_secs.index.union(context.short_secs.index).tolist()

    # A set of the same securities, sets have faster lookup.  
    context.security_set = set(context.security_list)

def compute_weights(context):  
    """  
    Compute weights to our long and short target positions.  
    """

    # Set the allocations to even weights for each long position, and even weights  
    # for each short position.  
    long_weight = context.long_leverage / len(context.long_secs)  
    short_weight = context.short_leverage / len(context.short_secs)  
    return long_weight, short_weight

def rebalance(context,data):  
    """  
    This rebalancing function is called according to our schedule_function settings.  
    """

    long_weight, short_weight = compute_weights(context)

    # For each security in our universe, order long or short positions according  
    # to our context.long_secs and context.short_secs lists.  
    for stock in context.security_list:  
        if data.can_trade(stock):  
            if stock in context.long_secs.index:  
                order_target_percent(stock, long_weight)  
            elif stock in context.short_secs.index:  
                order_target_percent(stock, short_weight)

    # Sell all previously held positions not in our new context.security_list.  
    for stock in context.portfolio.positions:  
        if stock not in context.security_set and data.can_trade(stock):  
            order_target_percent(stock, 0)

    # Log the long and short orders each week.  
    log.info("This week's longs: "+", ".join([long_.symbol for long_ in context.long_secs.index]))  
    log.info("This week's shorts: "  +", ".join([short_.symbol for short_ in context.short_secs.index]))


def record_vars(context, data):  
    """  
    This function is called at the end of each day and plots certain variables.  
    """

    # Check how many long and short positions we have.  
    longs = shorts = 0  
    for position in context.portfolio.positions.itervalues():  
        if position.amount > 0:  
            longs += 1  
        if position.amount < 0:  
            shorts += 1

    # Record and plot the leverage of our portfolio over time as well as the  
    # number of long and short positions. Even in minute mode, only the end-of-day  
    # leverage is plotted.  
    record(leverage = context.account.leverage, long_count=longs, short_count=shorts)

1 response

Yagnesh,

Replace "target=Equity(8554)" with "target=symbol(AAPL)" and the algo will load