Apr 23, 2023 | Matplotlib, Python
Download Data File: Download import numpy as np import pandas as pd import matplotlib.pyplot as plt import matplotlib.ticker as ticker def millions_and_thousands_formatter(x, pos): if x >= 1_000_000: return f'{x/1_000_000:.1f} MM’ elif x >= 1_000: return...
Apr 20, 2023 | Matplotlib, Python
data_file_download.py from datetime import datetime import time import pandas as pd tickers = [‘TSLA’, ‘AAPL’, ‘AMZN’, ‘UAL’] datasets = {} # year to day today_timestamp = int(datetime.now().timestamp()) for ticker in...
Mar 10, 2022 | Excel, VBA