Does excluding a symbol stop all trading activity for it?

Behavior of Excluded Symbols

When a symbol is added to the Symbol Exclusion List, it is completely removed from the bot’s active trading universe.

The excluded symbol is not initialized in the active trading symbol list, and the system behaves as if the symbol does not exist.

This is a hard block — not a soft filter.


1️⃣ Internal Behavior

When a symbol is excluded:

  • It is not loaded into the active trading symbol list
  • It is skipped during symbol synchronization
  • It is ignored by all trade logic modules
  • It is not monitored for signals, volatility, or DCA triggers

The restriction is absolute. There are no partial limitations.


2️⃣ What Is Fully Blocked?

Once excluded, the following activities will NOT occur:

Activity Status
Automated trades ❌ Disabled
DCA execution ❌ Disabled
Signal-based entries ❌ Disabled
Manual trade attempts ❌ Disabled
Position synchronization ❌ Disabled
Market monitoring ❌ Disabled

The symbol is fully ignored across the entire trading engine.


3️⃣ Practical Example

If you configure:

ExcludedSymbols:
  - "USDCUSDT"

Then:

  • No new trades will open on USDCUSDT
  • No automated triggers will activate
  • No DCA sequences will execute
  • Manual trade attempts will be rejected
  • The pair will not be monitored in any capacity

The symbol becomes effectively invisible to the system.


4️⃣ Why This Matters

This strict behavior ensures:

  • Strong risk containment
  • Zero accidental trade activation
  • Clean and enforceable symbol filtering
  • Reliable strategy boundaries
  • Institutional-grade asset control

There are no overrides or partial exceptions — exclusion guarantees full operational isolation.


📌 Key Takeaways

  • Excluded symbols are not initialized in the active trading list
  • All trading activity is blocked (manual, automated, DCA, signals, syncing)
  • The bot behaves as if the symbol does not exist
  • Provides strong operational and portfolio-level safety

Excluding a symbol results in a complete trading shutdown for that market — ensuring total control over what the bot is permitted to trade.

📎 Related Topics