Returns true if there is NO active scheduled signal for the given symbol.
Inverse of hasScheduledSignal. Use to guard signal generation logic.
Automatically detects backtest/live mode from execution context.
Trading pair symbol
Promise - true if no scheduled signal exists, false if one does
import { hasNoScheduledSignal } from "backtest-kit";if (await hasNoScheduledSignal("BTCUSDT")) { // safe to schedule a new signal} Copy
import { hasNoScheduledSignal } from "backtest-kit";if (await hasNoScheduledSignal("BTCUSDT")) { // safe to schedule a new signal}
Returns true if there is NO active scheduled signal for the given symbol.
Inverse of hasScheduledSignal. Use to guard signal generation logic.
Automatically detects backtest/live mode from execution context.