Data = tsl.get_historical_data(tradingsymbol = ["ACC"], exchange = "NSE", timeframe = "15") ---- Exception in Getting OHLC data as 'list' object has no attribute 'upper'


Getting error as shown in Topic. Please help to resolve.

Hey @ravindrakumar_shinde ,

Welcome to madefortrade

Thanks for bringing this up @Tradehull_Imran might be able to assist here.

Hi @ravindrakumar_shinde ,

tsl.get_historical_data() function call supports one symbol at a time not via list.
Refer the below code

data  = tsl.get_historical_data(tradingsymbol = 'ACC',exchange = 'NSE' ,timeframe="DAY")