What is alternative sources to get financial data?
Google is an american multinational company specialised in internet services.
What is alternative sources to get financial data?
There are number of alternative sources like Quandal,intrinio,google others.
How to get Financianl data from google in Python?
!pip install yfinance
import pandas as pd
import numpy as np
import yfinance as yf
df = yf.download('GOOG',
start='2020-01-01',
end='2021-08-28',
progress=False)
df.tail(9)
Open | High | Low | Close | Adj Close | Volume | |
---|---|---|---|---|---|---|
Date | ||||||
2021-08-17 | 2763.820068 | 2774.370117 | 2735.750000 | 2746.010010 | 2746.010010 | 1063600 |
2021-08-18 | 2742.310059 | 2765.879883 | 2728.419922 | 2731.399902 | 2731.399902 | 746700 |
2021-08-19 | 2709.350098 | 2749.040039 | 2707.120117 | 2738.270020 | 2738.270020 | 914800 |
2021-08-20 | 2741.659912 | 2772.290039 | 2729.340088 | 2768.739990 | 2768.739990 | 778200 |
2021-08-23 | 2779.969971 | 2843.540039 | 2774.958984 | 2821.989990 | 2821.989990 | 1054500 |
2021-08-24 | 2830.870117 | 2860.149902 | 2827.070068 | 2847.969971 | 2847.969971 | 756300 |
2021-08-25 | 2857.659912 | 2866.260010 | 2848.790039 | 2859.000000 | 2859.000000 | 641900 |
2021-08-26 | 2852.370117 | 2862.696045 | 2841.830078 | 2842.459961 | 2842.459961 | 74610 |
import matplotlib.pyplot as plt
How to plot google close price?
df['Close'].plot(figsize=(12,8))
0 Comments