Main Content

getdata

Retrieve Money.Net current data

Description

example

d= getdata(c,symbols,f)returns Money.Net datadusing the Money.Net connectioncfor the symbols and the Money.Net fieldsf.

Examples

collapse all

Create Money.Net connectioncusing a user name and password.

username ='user@company.com'; pwd ='999999'; c = moneynet(username,pwd);

Retrieve Money.Net current datadfor the symbol IBM®using the Money.Net connectionc. Specify the Money.Net data fieldsffor ask and bid price.

symbol ='IBM'; f = {'Ask','Bid'}; d = getdata(c,symbol,f);

Display Money.Net current data.

d
d = Symbol Ask Bid ______ ______ ______ 'IBM' 145.00 143.85

dis a table that contains the columns for symbol, ask price, and bid price. The row contains the Money.Net data values for each column.

Close the Money.Net connection.

close(c)

Create Money.Net connectioncusing a user name and password.

username ='user@company.com'; pwd ='999999'; c = moneynet(username,pwd);

Retrieve Money.Net current datadfor thesymbolslist that contains IBM, Google®, and Yahoo!®using the Money.Net connectionc. Specify the Money.Net data fieldsffor ask and bid price.

symbols = {'IBM','GOOG','YHOO'}; f = {'Ask','Bid'}; d = getdata(c,symbols,f);

Display Money.Net current data.

d
d = Symbol Ask Bid ______ ______ ______ 'IBM' 145.00 143.85 'GOOG' 700.50 700.05 'YHOO' 37.50 37.41

dis a table that contains the columns for symbol, ask price, and bid price. The rows contains the Money.Net data values for each symbol in the symbol list.

Close the Money.Net connection.

close(c)

Input Arguments

collapse all

Money.Net connection, specified as a connection object created usingmoneynet.

Money.Net symbol list, specified as a character vector, cell array of character vectors, string scalar, or a string array. To specify one symbol, use a character vector or string scalar. To specify multiple symbols, use a cell array of character vectors or a string array.

Example:'IBM'

Example:{'IBM','GOOG'}

Data Types:char|cell|string

Money.Net data field list, specified as a character vector, cell array of character vectors, string scalar, or a string array. To specify one field, use a character vector or string scalar. To specify multiple fields, use a cell array of character vectors or a string array.

Specify the field by using the single character or the field definition. For example, to specify the highest price for the equity during the current trading day, use a single character"H"or the corresponding field definition"High". When using the field definition, the software ignores the case of the definition. To view the list of valid Money.Net fields and field definitions, see theMoney.Net API Documentation.

Example:"High"

Example:["High" "Low"]

Data Types:char|cell|string

Output Arguments

collapse all

Money.Net data, returned as a table. Each row corresponds to thesymbolslist. Each column corresponds to the field listf.

版本历史

Introduced in R2016b