ig_create_watchlist
Create a custom watchlist on IG Trading by specifying a name and adding initial market instruments (epics) for tracking forex, indices, and commodities.
Instructions
Create a new watchlist
Input Schema
Name | Required | Description | Default |
---|---|---|---|
epics | No | Initial epics to add | |
name | Yes | Watchlist name |
Input Schema (JSON Schema)
{
"properties": {
"epics": {
"default": [],
"description": "Initial epics to add",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "Watchlist name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}