Traders often encounter scenarios where they need to send simultaneous buy and sell signals for different stocks. For example, closing a position in one ticker while opening a position in another. This guide explains how to construct JSON alerts for such cases in TradingView and how TradersPost processes them for seamless execution.
TradersPost requires separate alerts for each ticker, even if the actions need to occur simultaneously. For example:
You’ll need to create two distinct alerts, one for each ticker.
{
"ticker": "TQQQ",
"action": "sell"
}
{
"ticker": "SQQQ",
"action": "buy"
}
Both alerts will trigger at the same time if your TradingView strategy aligns the conditions for both signals concurrently. TradersPost will receive and execute both alerts simultaneously.
For faster signal responsiveness:
alert()
calls.Constructing JSON for simultaneous buy and sell signals in TradersPost is straightforward with separate alerts for each ticker. By leveraging TradingView’s alert system or custom Pine Script configurations, you can ensure seamless execution of complex trading strategies. With TradersPost’s robust platform, your signals are processed efficiently, enabling precise and timely trading actions.