Skip to content

Filter trades by magic (expert ID)#

Overview#

In CopyFactory you can optionally filter trade signals by magic (expert ID).

By default CopyFactory will not apply a magic filter. However, if you want to enable this feature then you can specify an optional magicFilter setting. This setting can be specified on any of a strategy entity.

Example (allow signals from specific expert IDs only)#

"magicFilter": {
  "included": ["1000", "1010-1019"]
}

Example (exclude signals from specific expert IDs)#

"magicFilter": {
  "excluded": ["1000", "1010-1019"]
}

Example (strategy)#

{
  "name": "Strategy",
  ...
  "magicFilter": {
    "included": ["1000", "1010-1019"]
  },
  ...
}