Unfortunately, the commodity trade market is closed at the weekend. The new COT data will come on Saturday. The script therefore only shows the old data until Monday when the markets open again. But I would like to analyze the markets at the weekend. So how can I see the COT data in the indicator already at the weekend? I thought that it would be possible if we extend the indicator line by one point as an extension or as a forecast which are downloading the new data into the future without priceaction.
'qticker = syminfo.root == 'GE'
comm_lg = request.security(legacy_cot + '4', 'W', close)
comm_sh = request.security(legacy_cot + '5', 'W', close)
comm_net = comm_lg - comm_sh
plot(comm_net, color=color.new(color.red, 0), title='Commercials Net', style=plot.style_line, linewidth=2)`