| Datafeed Toolbox | ![]() |
Get Bloomberg connection properties
Syntax
value = get(Connect, 'PropertyName')
Arguments
Connect |
Bloomberg connection object created with the bloomberg command. |
|
(optional) A MATLAB string or cell array of strings containing property names. Property names are:ConnectionIPAddressPortSocketVersion |
Description
value = get(Connect, ' returns a MATLAB structure containing the value of the specified properties for the Bloomberg connection object. PropertyName')
value = get(Connect)
returns the value for all properties.
Example
c = bloomberg(8194,'111.222.33.444')
establishes a Bloomberg connection, c.
p = get(c, {'Port', 'IPAddress'})
p = port: 8194 ipaddress: 111.222.33.444
See Also
bloomberg, close, fetch, isconnection
| fetch | isconnection | ![]() |