Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Is it possible to use 'order' function with fetched data which has not been in original symbols in Quantopian?

Hi,

I would like to add my own csv file with 'date', 'symbol', 'price' columns to context in Quantopian.
The symbol in the csv file is not in original symbol data in Q.

I attached my backtest code. What I want to do is that I recall the csv file and with dates, symbols, prices in the file, I would like to order and see results in the backtest.

I did research so many forums for this fetch issues, but I did not get the right answer.

Please let me know
i) how I can fetch csv and add to like context.stock,
ii) how I can order a security of csv file using the prices in the file as well. (the securities does not belong to the original symbol data in Quantopian)
iii) with all these, I finally want to see backtest result with absolutely outside of the original data of Quantopian.

Thanks,

4 responses

Any help on this?

also curious about this, i guess the only way for it to work is to build data bundles rather than using fetch csv?

On Quantopian, your algorithm can only buy and sell US securities and futures that are in our security master. Quantopian's platform doesn't permit trading in other instruments.

If you want to get everything running locally using Zipline, Zipline can be modified to buy and sell almost anything. However with Zipline you need to provide your own data, etc.

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.

Thanks Dan, I think even with zipline, fetch_csv does not work for making transactions, only building data bundles works.