Series data

How to get series data of an italia stock? I saw only example of USA stock

If someone know it will be useful to me because I don't find any help in the web, for example the Unicredit Stock ticker UCG 

You can download italia stock data from Yahoo finance. 

For example, you can directly download the data for stock ticker UCG in CSV file from here.

In Python you can do the same using the following command:

import yfinance as yf

data = yf.download('UCG.MI', start ='2019-1-1', end = '2019-9-1')


 

thanks