Unable to connect to Money.Net using Datafeed toolbox

18 views (last 30 days)
Seth
Seth on 13 Oct 2025 at 2:18
Commented: Seth on 17 Oct 2025 at 21:31
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)

Answers (1)

Anjaneyulu Bairi
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!
  1 Comment
Seth
Seth on 17 Oct 2025 at 21:31

Thank you so much! I contacted money.net and they figured out the problem on their end. Now everything is working.

Sign in to comment.

Products


Release

R2025a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!