Automating Infinity Algo Alerts via Finandy🔄

⚙️ Step 1: Configure Finandy to receive TradingView signals

  1. Log in to Finandy.

  2. Algo-trading → TradingView Signals → Create new signal (web-hook).

  3. Main settings

Field in Finandy UI
What to pick

Name

e.g. Infinity Algo Signals

Currency pair

{{ticker}} (so one hook works for every pair)

Order Side

Strategy

Position Side

Strategy

Order Side (indicator only)

Leave at Strategy as well

Save

Finandy shows you Signal URL and Signal Message

Copy both; you’ll paste them into TradingView.


📈 Step 2: Create TradingView alerts

Repeat these steps twice – once for a buy condition and once for a sell condition.

Alert-box field
Value

Condition

Infinity Algo V3.0 → choose your buy/sell pulse

Options

Once per bar close

Webhook URL

paste the Signal URL from Step 1

Message

paste the *Signal Message and change only the side value to buy or sell

Example messages

{
  "name":   "Infinity Algo Signals",
  "secret": "YOUR-SECRET",
  "side":   "buy",
  "symbol": "{{ticker}}"
}
{
  "name":   "Infinity Algo Signals",
  "secret": "YOUR-SECRET",
  "side":   "sell",
  "symbol": "{{ticker}}"
}

side must be the lowercase word buy or sell – that’s the trigger Finandy looks for. docs.finandy.com

Strategy‐mode shortcut: if you’d rather send one alert that flips automatically, keep side:"strategy" in the JSON and let Infinity Algo output strategy.long / strategy.short. Finandy supports that too.


🎯 Step 3: Set TP & SL inside Finandy (optional)

  1. Open the webhook you just created → Take Profit (TP) tab

  2. Tick Enable TP → choose Limit or Market

  3. Number of orders → up to 10 tiers

  4. Price offset (%) and Order distribution (%) per tier

  5. Level re-ordering keeps percentages intact when you DCA.

Repeat on the Stop Loss (SL) tab. All SL/TP orders sit on the exchange; no extra TradingView alerts are required.


🧪 Step 4: Test & monitor

  • Interface → Signal log shows every webhook Finandy receives with “OK” or an error code.

  • Start with tiny sizes to be sure quantities, offsets and pair placeholders resolve as expected.


🛠️ Troubleshooting checklist

  • 403 error → wrong secret or you pasted the URL without https://.

  • “Unknown side” → side not exactly buy, sell or strategy.

  • No order appears → check that Order Side = Strategy and the signal log shows “Enabled”.

  • Docs reference → https://docs.finandy.com/


🔤 Glossary of JSON keys (Finandy)

Key
Meaning

name

purely cosmetic; helps you track hooks

secret

the auth token Finandy generated in Step 1

side

buy, sell, or strategy

symbol

usually {{ticker}}; Finandy replaces it with BTCUSDT, ETHUSDT…

Optional extras

qty, qty_type, price, tp_enable, sl_enable – but it’s easier to set size/TP/SL inside Finandy’s UI.

Last updated