Skip to content

Symbols traded#

Overview#

In CopyFactory you can configure symbols traded by a strategy, so that it subscribed to the symbol quotes ahead of time, to reduce the latency of the first trades.

Note, that we do not recomment enabling this feature. If you do not enable it the application will detect symbols traded automatically. However, if you want to override this setting then you can specify an optional symbolsTraded setting. This setting can be specified on any of the following entities:

  • strategy

Please never add excessive symbols to this setting as adding excessive symbols will increase your trade copying latency.

Example (strategy)#

{
  "name": "Strategy",
  ...
  "symbolsTraded": ["EURUSD", "GBPUSD"],
  ...
}