This is a list manipulation question. For context, FinancialData[“name”,”prop”,{start,end}]
returns a list with nested elements. For example,...
...are dividends paid by General Electric over that period.
What is the best way to select ranges within the list, say the date-dividend elements during 1 Dec 2020 to 31 August 2021? In other words, to get... {{{2020, 12, 18}, 0.08}, {{2021, 3, 5}, 0.08}, {{2021, 6, 25}, 0.08}}?
Those examples are small to simplify my question. An obvious answer is repeated calls to FinancialData[]. But I'm sure I can avoid that inefficiency if I understand more about list manipulation in Mathematica. If you answer with a code example, I might need some explanation with it.