๐ Automating Infinity Algo Alerts via Finandy
Guide for non-backtest version
๐ฏ Integration Method for Indicators
Separate Buy/Sell Alerts (Required for Indicators)
What it does:
Two distinct alerts (Buy & Sell)
Clear signal separation
Works with any indicator
No code access needed
Best for:
โ All Infinity Algo users
โ Simple setup
โ Clear control
โ Testing & production
Alerts: 2 total (indicators can only send one signal type per alert)
- Buy Signal โ side: "buy"
- Sell Signal โ side: "sell"
Position Side: Both/Long only/Short only
Important: Since Infinity Algo is an indicator, you MUST create two separate alerts. The "side"
field must be included with value "buy"
or "sell"
(lowercase). Strategy placeholders like {{strategy.order.action}}
won't work.
โ๏ธ Step 1: Configure Finandy Webhook
Navigate to Finandy:
Log in โ Finandy.com
Algo-trading โ TradingView Signals
Create new signal (webhook)
Configure main settings:
Name
e.g. Infinity Algo Signals
Currency pair
{{ticker}}
(one hook for all)
Position side
Both or Long only/Short only
Save
Shows Signal URL & Message
Do NOT select "Strategy" for Position side - that's only for TradingView strategies, not indicators
๐ฉ Step 2: Get Webhook Credentials
After saving, Finandy displays your unique webhook details. Copy exactly as shown:
Signal URL: Copy the exact URL displayed for your signal
Signal Message: Copy the template with your secret token
Security: Keep your secret
token private! By default, Finandy only accepts requests from TradingView IPs.
๐ Step 3: Create TWO TradingView Alerts
You MUST create two separate alerts - one for buy signals and one for sell signals.
Alert Configuration
Condition
Infinity Algo โ Choose your signal
Options
Once Per Bar Close
Webhook URL
Paste the exact Signal URL from Step 2
Message
JSON template (see below)
๐ JSON Templates for Each Alert
Create this alert on a Buy condition:
{
"name": "Infinity Algo Signals",
"secret": "YOUR-SECRET",
"side": "buy",
"symbol": "{{ticker}}"
}
Required: "side": "buy"
(lowercase)
๐ฏ Step 4: Set TP & SL Inside Finandy (Optional)
Open the webhook you created โ Take Profit (TP) tab
Tick Enable TP โ choose Limit or Market
Number of orders โ choose how many levels
Price offset (%) and Order distribution (%) per tier
Level re-ordering keeps percentages intact when you DCA
To accept TP overrides from signals, tick the checkbox to enable
All TP orders sit on the exchange; no extra TradingView alerts required.
โก Alert Setup Examples
For "Buy Signal - Smart":
Condition: Infinity Algo โ "Buy Signal - Smart"
Webhook URL: Your Finandy Signal URL
Message: Buy JSON with
"side": "buy"
For "Sell Signal - Smart":
Condition: Infinity Algo โ "Sell Signal - Smart"
Webhook URL: Same Finandy Signal URL
Message: Sell JSON with
"side": "sell"
๐งช Step 5: Test & Monitor
Interface โ Signal log shows every webhook received with "OK" or error code
Start with tiny sizes to verify setup
Check that both buy AND sell alerts are working
Use the Signal Log to see received JSON and actions taken
Testing Checklist: โ
Created TWO separate alerts โ
Buy alert has "side": "buy"
(lowercase) โ
Sell alert has "side": "sell"
(lowercase) โ
Both use same webhook URL and secret โ
Signal Log shows both types of signals
๐ฏ Position Side Configuration
Long & Short (Reversal)
Both
Closes opposite before opening new (one-way mode)
Long Only
Long only
Ignores sell signals
Short Only
Short only
Ignores buy signals
Strategy Mode
Strategy
Only for TradingView strategies
Hedge Mode Warning: In hedge mode, use Long only or Short only for indicators. Position side "Both" won't close correctly in hedge mode - it's designed for one-way mode reversals.
๐ ๏ธ Troubleshooting Checklist
403 error
Wrong secret or URL missing https://
"Unknown side"
side
must be exactly "buy"
or "sell"
(lowercase)
No orders
Check Position Side isn't set to "Strategy"
Only buys work
Did you create the sell alert?
Wrong pair
Verify {{ticker}}
placeholder
No reversal
Check Position Side = "Both" and one-way mode enabled
Hedge issues
Use Long only/Short only in hedge mode, not "Both"
๐ค JSON Key Reference (Finandy)
name
Webhook identifier
Any descriptive name
secret
Auth token from signal
Keep private!
side
Trade direction
Required: "buy"
or "sell"
(lowercase)
symbol
Trading pair
Usually {{ticker}}
tp.orders
TP levels array
Optional override
ofs
% offset from entry
String: "1.0" = 1%
piece
% of position
Percentages that sum to intended total
update
Apply new settings
true
to override TP from signal
๐ Resources
Important Reminders:
Finandy is a third-party service with separate costs
Indicators require TWO alerts (buy and sell separately)
The
"side"
field is mandatory and must be lowercaseTest with small amounts first
Manual trading via TradingView is always available
Last updated
Was this helpful?