So close, so close, but missing data shuts down Mathematica's functions. My data, the first sector -- AdvertisingAgencies -- for example, 133 stocks, when filtered for nyse & nasdaq a mere 33. Problems with missing data so filtered again for 2021 at 193 days, and eight more bit the dust. The list:
secNN01y = {"NASDAQ:ADV", "NASDAQ:BOMN", "NASDAQ:CMPR", "NASDAQ:CNET", \
"NASDAQ:CRTO", "NASDAQ:FLNT", "NASDAQ:ICLK", "NASDAQ:ISIG", \
"NASDAQ:MCHX", "NASDAQ:MGNI", "NASDAQ:NCMI", "NASDAQ:QNST", \
"NASDAQ:SRAX", "NASDAQ:WIMI", "NASDAQ:XNET", "NYSE:CCO", "NYSE:DLX", \
"NYSE:DMS", "NYSE:EEX", "NYSE:INUV", "NYSE:IPG", "NYSE:OMC", \
"NYSE:QUOT", "NYSE:TSQ", "NYSE:WPP"}
I wanted to look at seasonality -- I first tried "Return", but 20 cent stocks raised a dollar or two had 164% returns which skewed the data, "Price" was used. I wanted to check seasonality over a ten year period, 2021 worked but was only ten months, so 2020 was tried for 12 months.
p20 = FinancialData[secNN01y, "Price", {{2020}, {2020}, "Month"}];

Missing data in the first stock of the list, but if I kept deleting stocks for missing data soon there would not be any data to analyze. I tried using Table to reorganize the data by month, worked for 2021, but not for 2020 with missing data
p20T = Table[p20[[j, 2, 1, 1, i]], {i, 12}, {j, 25}];
I tried Pick with DateObjects on a limited set of data 
I wanted the mean of the stocks for each month, but the multiple levels in the data defeated Mean. With Rohit's helps the issue was partly resolved 
I tried to expand the data to the full year -- and missing data became an issue again 
The first stock in the list only has data for the last three months of 2020. When k calls for the 4th element in the list -- everything crashes
How does one work with FinancialData with all of its flaws???? I can not keep deleing stocks or else there will be so few, the data will be meaningless. If I can not take away, documentation says to replace the missing data with the mean of what is left -- but that is simply beyond my coding ability. Is there a better way???