Unable to connect to Money.Net using Datafeed toolbox
18 views (last 30 days)
Show older comments
I have been trying for hours to connect to money.net but am unable. I have pruchase money.net susbsription and have a proper username and password for money.net. I have purchased Matlab home use edition of Datafeed toolbox plus all the other computational finance toolboxes. The code shown online at https://www.mathworks.com/help/datafeed/moneynet.html#bvdi8ki-1 does not work.
I have written so many different types of code trying to access money.net. Here is one example.
% Replace with your Money.Net trial username/password
username = 'my email';
password = 'my password';
% 1) Connect (per docs): c = moneynet(username, password)
c = moneynet(username, password);
% 2) Verify connection
assert(isconnection(c) == 1, "Money.Net connection is not valid.");
% 3) Tiny current-quote smoke test
d = getdata(c, "AAPL", {'Ask','Bid'});
disp(d)
% 4) Tiny historical test (daily bars for ~1 week)
T = timeseries(c, "AAPL", datetime('today')-days(7), datetime('today'), '1D', {'Open','High','Low','Close','Volume'});
disp(T(1:min(5,height(T)),:))
% 5) Close
close(c)
0 Comments
Answers (1)
Anjaneyulu Bairi
on 16 Oct 2025 at 5:20
Hi,
Refer the below documentation links to know how to create connection to Money.net
Hope this helps!
See Also
Categories
Find more on Money.Net in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!