I have a question regarding extracting strings. i have a string with financial tickers. For extending these tickers I want to auto maize the getSymbols function
So for example I have the df
ticker = c("BTC-USD", "^GDAXI")
with the function I want to use it in getSymbols by doing
getSymbols = (Extracted_String, source = "yahoo")
the end product should be then 2 dfs with one for BTC-USD and the other for the DAX
thank you!