getdata
Retrieve Money.Net current data
Syntax
Description
Examples
Retrieve Current Data for One Symbol
Create Money.Net connection c
using
a user name and password.
username = 'user@company.com'; pwd = '999999'; c = moneynet(username,pwd);
Retrieve Money.Net current data d
for the symbol
IBM® using the Money.Net connection c
. Specify
the Money.Net data fields f
for 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
d
is 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)
Retrieve Current Data for Multiple Symbols
Create Money.Net connection c
using
a user name and password.
username = 'user@company.com'; pwd = '999999'; c = moneynet(username,pwd);
Retrieve Money.Net current data d
for the
symbols
list that contains IBM, Google®, and Yahoo!® using the Money.Net connection c
. Specify
the Money.Net data fields f
for 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
d
is 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
c
— Money.Net connection
connection object
Money.Net connection, specified as a connection object created
using moneynet
.
symbols
— Money.Net symbol list
character vector | cell array of character vectors | string scalar | string array
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
f
— Money.Net data field list
character vector | cell array of character vectors | string scalar | string array
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.
Example: "High"
Example: ["High" "Low"]
Data Types: char
| cell
| string
Output Arguments
Version History
Introduced in R2016b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)