Unable to connect to Money.Net using Datafeed toolbox

18 visualizzazioni (ultimi 30 giorni)
Seth
Seth il 13 Ott 2025 alle 2:18
Commentato: Seth il 17 Ott 2025 alle 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)

Risposte (1)

Anjaneyulu Bairi
Anjaneyulu Bairi il 16 Ott 2025 alle 5:20
Hi,
Refer the below documentation links to know how to create connection to Money.net
Hope this helps!
  1 Commento
Seth
Seth il 17 Ott 2025 alle 21:31

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

Accedi per commentare.

Prodotti


Release

R2025a

Community Treasure Hunt

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

Start Hunting!

Translated by