I have a list of stock symbols and related information containing some entries Missing["NotAvailable"]. I would like to delete all nested lists which contain a NotAvaiable entry, as Mathematica obviously does not support these instruments anymore (see also http://reference.wolfram.com/mathematica/ref/FinancialData.html).
The list entries are formated as follows:
indexMaster= {"^RDM-SO", Missing["NotAvailable"], "AMEX"}
I tried to use the following function, but it does not work.
instruments =
DeleteCases[indexMaster, {p__, q_String, r__} /;
StringMatchQ[q, "*NotAvailable*"] -> {p, q, r}]
Does anyone have an idea how to delete the Missing["NotAvailable"] entries?
Thanks