I have a project at uni where I need to use monthly closing price for 10 DAX constituents using yahoo Finance. I tried with a code from my teacher.
I am using R with the quantmod
package. The data was downloaded as csv files on my PC
#download my securities
getSymbols(TickersDAX, from=DStart, to=DEnd, warnings=F)
#ticker list
Ticker_list <- list(BEI.DE,ADS.DE,DBK.DE,DAI.DE,DB1.DE,BMW.DE,ALV.DE,BAYN.DE,CON.DE,BAS.DE,GDAXI)
I received daily prices with not even the full year displayed. What do I need to add to get only monthly closing prices?