question

Upvotes
Accepted
401 21 25 35

TRTH using matlab

"Hi, I'm trying to connect to TRTH via matlab using the following command:

   r=rdth('my@email.com','dataminers1'); 

and it replies:

Error using rdth (line 116)
Invalid RDTH client. 

This line usually works fine for me (it worked fine on Friday) so I'm not sure what's changed.

Thanks

tick-history-rest-apimatlab
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

1 Answer

· Write an Answer
Upvotes
Accepted
588 14 21 19

I don't believe that there are any issues with the TRTH API in logging in from multiple machines. I was able to use other's credentials from my machine here yesterday. Based on the size, that is the correct jar file.

Can you try running the following code from MATLAB? You'll need to substitute your name and password. I suspect it will fail at the getAssetDomains call but I'm hoping the Java exception will tell us something more.

import com.thomsonreuters.tickhistory.webservice.types.*;
import com.thomsonreuters.tickhistory.webservice.*;
credH = CredentialsHeader;
credH.setUsername(username);
credH.setPassword(password);
credH.setTokenId('');
credE = CredentialsHeaderE;
credE.setCredentialsHeader(credH);
r.cred = credE;
r.client = TRTHApiServiceStub
assetdomains = r.client.getAssetDomains(r.cred).getData
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.