'I get a JSON error while trying to run a script for yFinance

import pandas as pd import numpy as np import datetime import yfinance as yf import matplotlib.pyplot as plt import warnings

warnings.filterwarnings('ignore')

To use interactive plotting we can also use cufflinks

import cufflinks as cf

To enable offline mode

from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot

init_notebook_mode(connected=True) cf.go_offline()

The function downloads daily market data to a pandas DataFrame

def download_daily_data(ticker, start, end):

data = yf.download(ticker, start, end)

return data

The function downloads daily market data to a pandas DataFrame

def download_daily_data(ticker, start, end):

data = yf.download(ticker, start, end)

return data


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source