Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Why there are current values in History() ?

I think it is not a good idea to put the current values in the History() function.
Also there is no option where transforms like STDAV() and MAVG() can exclude current values.
Just my thoughts...

3 responses

Often times, algos want to look at the most recent price and compare it to another datapoint to make a decision. Or to detect changes in the market. History() was built to support this style of analysis. If you don't want the most recent price, it's easy to remove:

trailing prices = history(4, '1d', 'price')   #returns the last 3 day's close prices plus price last minute  
three_day_prices = trailing_prices[:-1]  # returns only the last 3 day's close prices  

You can similarly get a trailing window of minute data instead of daily data by changing the frequency parameter ('1d' to '1m'). You can also calculate the mavg and stdev on these functions, take a look at these examples:

https://www.quantopian.com/posts/history-function-comparing-2-stocks
https://www.quantopian.com/help#ide-history (see Common Usage: Rolling Transforms)

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.

I understand and use

three_day_prices = trailing_prices[:-1]  # returns only the last 3 day's close prices  

But how do I remove current price in simple transforms like STDAV() and MAVG().
I had to define functions to do this, again I am not comfortable (My shortcomming- I am working on)
at implementing them directly with set_universe() .

ah - it's not possible to use those built-in transforms on history(). They can only be applied on a security. But you can use pandas' rolling_mean() to get the calculation.

Here is the documentation and a sample backtest is below. http://pandas.pydata.org/pandas-docs/stable/generated/pandas.rolling_mean.html