Back to Webhook Messages
Webhook Messages

Invalid Formula Dependency

A formula may only read literal top-level values through signal.. The referenced key is itself a formula field; send that value as a literal or combine the logic into one expression.

One formula field uses another field that is itself a formula (both values start with =). Only one layer of evaluation is supported: a formula may read literal top-level payload values (via signal.<key>), not the output of a sibling formula field.

Typical error detail (webhook log)

The formula in field b references a, which is another formula field. Chained formulas are not supported.

Here a is the top-level key that is also defined as a formula.

Incorrect

{
  "ticker": "SPY",
  "action": "buy",
  "closePrice": "450.25",
  "buffer": "=0.5",
  "limitPrice": "=signal.closePrice + signal.buffer"
}

buffer is a formula, so signal.buffer is not allowed as a dependency.

Option A — fold into a single formula

{
  "ticker": "SPY",
  "action": "buy",
  "closePrice": "450.25",
  "limitPrice": "=signal.closePrice + 0.5"
}

Option B — send the intermediate value as a literal

{
  "ticker": "SPY",
  "action": "buy",
  "closePrice": "450.25",
  "buffer": "0.5",
  "limitPrice": "=signal.closePrice + signal.buffer"
}

Option C — compute upstream

Precompute limitPrice in TradingView (or your sender) and send it as a plain number string with no leading =.

If you intended to reference a field that is not a formula but still see this message, check that the referenced key does not accidentally start with = in the JSON you send.

Start trading at scale today. Sign up for free.

Free 7-day trial

Set-up in 3 minutes

Paper account for testing

TradersPost operates as a non-custodial automated trading platform, enabling users to connect alerts from their preferred trading platforms to their selected brokerage or exchange accounts. It abstains from the transmission, custody, or management of customer funds, covering both traditional and cryptocurrency assets. Typically, registration requirements set by regulatory entities such as the SEC, FINRA, or FinCEN apply to entities that hold or transmit customer funds. To ensure ongoing compliance, TradersPost regularly engages with regulatory authorities to confirm its adherence to all relevant local and federal laws.

TradersPost does not provide alerts, signals, research, analysis, or trading advice of any kind. It is designed to assist traders and investors in making their own trading decisions based on their alerts. The platform does not offer recommendations regarding securities to buy or sell, nor does it provide trading or investing advice. The platform and its features, capabilities, and tools are provided 'as-is' without any warranty.

Risk Disclosure: The use of automated trading systems involves inherent risks, including the potential for significant financial loss. These systems operate based on predetermined algorithms that may not fully adapt to changing market conditions, possibly making them unsuitable for some investors. Individuals are advised to thoroughly assess their financial situation and risk tolerance before using this platform.

Testimonials appearing on this website may not be representative of other clients or customers and is not a guarantee of future performance or success.

© 2026 TradersPost, Inc. All rights reserved.