Trin indicator for the italian market

Is there in Quandl a Trin indicator for the italian market?

Hello Rocco,



I am assuming you're looking for the count of the stocks which are advancing and declining along with the volume corresponding to each of the stocks in FTSE MIB. You will have to download the tickernames and the get the data for the corresponding prices and volume using websites such as investing.com. Thereafter you can get a daily counts of advancing and decling for calculating TRIN.



You can get the stocks in FTSE MIB using the code:



import pandas as pd

tickers = pd.read_html('https://en.wikipedia.org/wiki/FTSE_MIB')[1]['Ticker'] 

 

Thanks a lot , I hoped there would have been something done :slight_smile: