User Portlet User Portlet

Discussions
Hello Ruben, Thank you for your suggestion. I have already contacted Quandl regarding this package and I will also upload it to library.wolfram.com soon. Best, Anmol
Consider following simple example: In[1]:= MapThread[f[#1, #2] &, {{a, b, c}, {1, 2, 3}}] Out[1]= {f[a, 1], f[b, 2], f[c, 3]} Using above idea we can construct In[2]:= MapThread[ Integrate[#1 x^2, {x, 1,...
As long as historical quotes of a stock or index in available in Yahoo Finance, we can use following function to get financial data. Options[YahooFinancialData] := {StartDate -> {0, 0, 0}, EndDate -> {0, 0, 0}, TradingPeriods -> "d"}; ...