I have the following formula which extracts an array of data from a different worksheet

=INDIRECT("'[D.xlsb]"&Data!$E$2&"'!B"&bb_5+1&":"&"B"&bb_5+74)
The above is a named array called open_prices_array. When plotting a chart, instead of selecting a data with my cursor, I type the following in the dialog box:

currentWorkbookName!open_prices_array
What I'd like to do is have a named range that has 4 columns worth of data rather than one, and than have excel plot all 4 series, but by referring to it by a single name. So rather than typing in currentWorkbookName!open_prices_array for series 1 and currentWorkbookName!high_prices_array for series 2 of the chart and so on, type in currentWorkbookName!ALL_prices_array only once in the chart dialog box and have all 4 columns charted automatically? Is that possible to do somehow?

Thank you.