/watchlist
https://api.livevol.com/v1/watchlist
Name | Description | Type | Additional information |
---|---|---|---|
name |
A watchlist name |
string |
Required Max length: 32 The value of this field is case sensitive |
description |
A watchlist description |
string |
Required Max length: 255 The value of this field is case sensitive |
{ "name": "customWL1", "description": "My Custom Watchlist" }
<watchlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <description>My Custom Watchlist</description> <name>customWL1</name> </watchlist>
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": "d44947d7-f653-4e91-8ee3-9a5367b5d96c", "name": "default", "description": "", "symbols": [ "AAPL", "MSFT" ] }
<watchlist xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <description></description> <id>d44947d7-f653-4e91-8ee3-9a5367b5d96c</id> <name>default</name> <symbols> <symbol>AAPL</symbol> <symbol>MSFT</symbol> </symbols> </watchlist>