research_public icon indicating copy to clipboard operation
research_public copied to clipboard

Quantitative research and educational materials

Results 18 research_public issues
Sort by recently updated
recently updated
newest added

Hey, nice job! What's the licence for this repo?

const puppeteer = require("puppeteer"); async function scrape(url) { const browser = await puppeteer.launch({ headless: false }); const page = await browser.newPage(); await page.goto(url); await page.waitForSelector("span [title='Ek Villian']"); const target =...

I haven't finished the course man!! No!!!!!!

The notebook [Violations_of_Regression_Models](https://github.com/quantopian/research_public/blob/master/notebooks/lectures/Violations_of_Regression_Models/notebook.ipynb) says that "for the 5 most recent datapoints, a significant correlation exists with the current". **Why, since**: 1. we have 9 values different from zero (very low...

An error was pointed out by community member [Emilio via helpscout](https://secure.helpscout.net/conversation/792424115/41244/?folderId=221318): >Hi, I found a mistake [in this lecture](https://www.quantopian.com/lectures/introduction-to-pairs-trading). In the moving average section at the end, there is this...

invalid

https://www.quantopian.com/lectures/plotting-data#answers

bug

Hello, In lecture 30 ( (The Capital Asset Pricing Model and Arbitrage Pricing Theory) Beta was calculated with `AAPL_results = regression.linear_model.OLS(R-R_F, sm.add_constant(M)).fit()` but shouldn't be with the following formula? `AAPL_results...