Advanced settings guide
How to use advanced bot JSON fields.
These fields are optional. If you are not sure whether you need them, leave them as empty braces so the bot uses the normal setup.
Market filters
Limit copied trades to specific outcomes or market slug patterns.
Leave this blank if you want the bot to copy everything from the wallet you follow. Only use this field if you want an extra advanced filter on top of that.
Supported keys
`allowed_outcomes`: array of outcome names the bot is allowed to trade, such as `YES` or `NO`.
`slug_prefixes`: array of market slug prefixes the bot is allowed to trade.
Example
{
"allowed_outcomes": ["YES"],
"slug_prefixes": ["bitcoin-", "ethereum-"]
}Stop rules
Tell the bot when to stop after repeated technical failures.
This field currently supports one stop rule. It is useful if you want the bot to stop after too many errors instead of retrying forever.
Supported keys
`max_error_streak`: number of consecutive errors allowed before the bot stops itself.
Example
{
"max_error_streak": 10
}