/watchlist/symbols
https://sandbox.livevol.com/api/v1/watchlist/symbols
Name | Description | Type | Additional information |
---|---|---|---|
symbols |
Symbols collection |
Collection of string |
None. |
{ "symbols": [ "AAPL", "MSFT" ] }
<watchlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist>
Collection of WatchlistResult
Name | Description | Type | Additional information |
---|---|---|---|
id |
Watchlist Id |
globally unique identifier |
None. |
name |
A watchlist name |
string |
None. |
description |
A watchlist description |
string |
None. |
symbols |
Symbols collection in current watchlist |
Collection of string |
None. |
[ { "id": "ebc38759-22ef-4e73-92b3-315793d2e65a", "name": "default", "description": "", "symbols": [ "AAPL", "MSFT" ] }, { "id": "1b30830e-8cdc-42f7-95b9-317336702d24", "name": "customWL1", "description": "My Custom Watchlist", "symbols": [ "A" ] } ]
<watchlists xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <watchlist> <description></description> <id>ebc38759-22ef-4e73-92b3-315793d2e65a</id> <name>default</name> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist> <watchlist> <description>My Custom Watchlist</description> <id>1b30830e-8cdc-42f7-95b9-317336702d24</id> <name>customWL1</name> <symbols> <symbol>A</symbol> </symbols> </watchlist> </watchlists>