I need the total traded volume (annually) for Natural Gas commodity at NYMEX. For that purpose, if I write this code in Python API, I need to clarify what volumes does this code provides?Even if it provides the monthly total volume, it is still for just these future contracts and how to retrieve for all contracts in a single code line?
req = ek.get_timeseries(["NGc1", 'NGc2', 'NGc3', 'NGc4', 'NGc5'],['VOLUME'], start_date = "2011-01-01", end_date = "2020-12-31", interval="monthly")
Any lead will be highly appreciated.