ig_add_to_watchlist
Add a specific market instrument (epic) to a designated watchlist on IG Trading for easy tracking and analysis. Requires watchlist ID and epic details.
Instructions
Add an epic to a watchlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epic | Yes | Epic to add | |
watchlistId | Yes | Watchlist ID |
Input Schema (JSON Schema)
{
"properties": {
"epic": {
"description": "Epic to add",
"type": "string"
},
"watchlistId": {
"description": "Watchlist ID",
"type": "string"
}
},
"required": [
"watchlistId",
"epic"
],
"type": "object"
}