Quantopian's community platform is shutting down. Please read this post for more information and download your code.
Back to Community
Improvements to Community Search

Yesterday, we shipped a change to our community search function that should improve your experience when navigating the forums.

Before, when you searched for something such as "pairs trading," you would get back results related to pairs trading strategies; however, the results would frequently be old or uninformative, but there are certainly newer, informative posts that have been created at some point.

After making some changes, within the first five search results you'll now see posts such as:

Generally, these posts have updated/newer content, better discussion, more views, and notebooks/backtests included to support them.

So what does that mean for you? Well, for the most part, whether you're searching for pairs trading, robinhood, momentum, external capital, or any other specific terms, it'll be easier for you to find good content.

If you're interested in a more technical explanation, keep reading

TL;DR - When you search for something, the results you'll see will be generally newer and informative.


Changing How Posts Are Considered "Relevant"

We use Elasticsearch to index posts, and then display them here on the community. When you enter a search term or "query," Elasticsearch tries to match to the following fields

title, body, author, tags, replies, reply_authors  

and produces a "relevance score." Before, when you entered certain queries, you would get results back that were scored by relevance, and only match to frequency in text fields (you can read more about how that works in Elasticsearch here), however, there are now several functions that also influence the score of the posts:

Decay; If a post is older than X number of days/months/years then instead of adding 1 to the score that's calculated by Elasticsearch, 0.1 will be added. Basically, if it's older, it's score is a bit lower.

Field Value Factors; This function takes the log of the value of the numbers of views a post has, multiplies the result by 0.01, and adds that number to the score. This usually just causes posts to switch by one or two positions with another post in the scoring; the more views that a post gets, the higher it's score will become.

A custom scoring script; Logically, the script accounts for whether a post has a notebook, has a backtest, and is interesting, and says that if the post has these things, then these are generally considered posts with better content.

How can you take advantage of this? There are two ways. The first way is when you're searching for useful posts; the quickest way to find good content is by searching for terms rather than sentences. The terms I highlighted above are good examples.

The second way is when you're writing up a post. If you have a question, for example, about fundamental data , and you're hoping to get feedback, or you're hoping to get a lot of views because you think you've found something interesting, you should do your best to include a backtest and a notebook to support your findings. If you start to get some really good discussion going, this might lead to a higher view count, and place your post up higher than someone else's.

Enjoy,

Freddie

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.

1 response

@Freedie, that's fantastic. This will improve a lot the experience on the website. One of the things is that I wish the forum had sections so I could get to the latest forum posts by the Quantopian team or jump to coding questions directly, or check trading ideas. There are tags, but I think they are more useful to search content, not necessarily to browse it, since different people tag things differently. Maybe with ML you can create classify the posts creating tags, the way Quora does.

Thanks