Reliable data

Hi what is the most reliable data for CME futures (E-mini) and US stocks. I'm talking about intraday and daily data aswell.

 

Hello Andres,



You can get reliable data for the same from yfinance. Here is how you can do it:



for minute level- 

import yfinance as yf

data = yf.download('ES=F',period="5d",interval="1m")



Minute level data for some instruments is only available for the last 7 days. 



for daily data:

import yfinance as yf

data = yf.download('ES=F')