Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
DollarNeutral not working?

Hey,

I built a simple trading algorithm, that uses Linear Regression to predict future returns of an equity.
I am using the optimiziation API to do the trading and added the DollarNeutral Constraint, however, no matter how low I set the tolerance, the Net Dollar Exposure peaks at over 10% during the Backtest (see attached). What am I missing?

3 responses

I would guess that because of the other constraints it is impossible for the optimizer to keep the algorithm exactly dollar neutral

The optimize method is working, and does calculate weights, which meet the constraints -including the DollarNeutral constraint. However, the trades aren't being executed. Looking at the logs, there are a lot of unfilled orders at the end of each day. Many of the stocks being traded have low trading volume and the slippage model is limiting the shares which can be ordered.

The easy way to check this is to lower the initial portfolio balance from $10M to $100k and run a backtest. Check the logs and one won't see all the 'unfilled order' messages. The backtest also now meets the 'Net Dollar Exposure' criteria.

One technique I like in debugging is to use calculate_optimal_portfolio. This way one can record the output of of the optimizer. Something like this

    objective = opt.MaximizeAlpha(alphas)  
    constraints = [max_turnover,max_leverage,sector_style_risk,dollar_neutral]

    opt_weights = opt.calculate_optimal_portfolio(objective,constraints)

    # Record the output of the optimizer to see whats going on  
    gross_exposure = opt_weights.abs().sum()  
    net_exposure = opt_weights.sum()  
    record(gross=gross_exposure, net=net_exposure)

    # Order using the calculated opt_weights  
    algo.order_optimal_portfolio(opt.TargetWeights(opt_weights),[])

The attached algo has this change. In debugging, one can look at the gross exposure and the net exposure calculated by the optimizer. The values are 1 and 0 throughout the backtest. This is what's expected. Since the target weights should result in a 'Net Dollar Exposure' close to zero, there must be an issue with the execution.

Hope that helps. Good algo.

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.

@Dan Whitnable Thank you so much!