plotting - DateListPlot of multiple time series with data values and legend appearing as the cursor moves over ploted lines
This is very similar to my previous question. I want to use "DateListPlot"
to visualize multiple time series (n) and see data values and legend as I move the cursor over plotted lines. To begin with, I have the following codes (preferable n > 2):
Stock1 = FinancialData["NVDA", "Close", {{2017, 1, 1}, Now}];
Stock2 = FinancialData["QQQ", "Close", {{2017, 1, 1}, Now}];
DateListPlot[{Stock1, Stock2},PlotLegends -> {"NVDA Price", "QQQ
Price"},PlotStyle -> {Red, Green}]
It produces the graph but does not show the data points as I move my mouse along the plotted lines. Any help would be greatly appreciated. Thank you in advance.
Comments
Post a Comment