JSON Configuration for TradingView Integration

7 min read

1. Indicator JSON Configuration #

This JSON structure is designed for indicator-based trading alerts. It triggers a trade signal when a TradingView indicator condition is met (e.g., moving average crossover, RSI breakout, etc.).

JSON Breakdown (Indicator) #

{
  "symbol": "NQM5",
  "date": "{{timenow}}",
  "data": "buy",
  "quantity": 10,
  "risk_percentage": 0,
  "price": "{{close}}",
  "tp": 0,
  "percentage_tp": 100,
  "dollar_tp": 0,
  "sl": 0,
  "dollar_sl": 0,
  "percentage_sl": 50,
  "order_type": "MKT",
  "update_tp": false,
  "update_sl": false,
  "token": "URe9daf2bc49008ba62dc3",
  "duplicate_position_allow": true,
  "platform": "RITHMIC",
  "reverse_order_close": true,
  "multiple_accounts": [
    {
      "token": "URe9daf2bc49008ba62dc3",
      "account_id": "BG28198",
      "connection_name": "RITHMIC1",
      "risk_percentage": 0,
      "quantity_multiplier": 1
    }
  ]
}

Explanation of Keys (Indicator) #

KeyDescription
symbolThe trading asset symbol (e.g., NQM5 for Nasdaq futures). This must match the symbol format required by your broker or trading platform.
dateThe timestamp of when the alert is triggered. The placeholder {{timenow}} dynamically inserts the current time when the alert fires.
dataSpecifies the trade signal generated by the indicator. Examples include:
"buy" (enter a long position),
"sell" (enter a short position). This is a static value set by the indicator’s logic (e.g., a moving average crossover).
quantityDefines the number of contracts or shares to trade. A fixed value like 10 indicates 10 units will be traded unless overridden by risk settings.
risk_percentageSpecifies the percentage of your account balance to risk on the trade. A value of 0 means the trade size is fixed (based on quantity) rather than calculated dynamically from risk.
priceThe execution price of the trade. The placeholder {{close}} dynamically fetches the most recent closing price when the alert triggers.
tpSets a fixed Take Profit (TP) level in price terms. A value of 0 means no fixed TP is applied; TP is determined by other parameters (e.g., percentage_tp).
percentage_tpDefines the Take Profit as a percentage of the entry price. A value of 100 means the TP is set at a 100% profit target (e.g., doubling the entry price for a long position).
dollar_tpSets the Take Profit as a fixed dollar amount. Useful for targeting a specific profit in dollar terms. A value of 0 disables this option.
slSets a fixed Stop Loss (SL) level in price terms. A value of 0 means no fixed SL is applied; SL is determined by other parameters (e.g., percentage_sl).
dollar_slDefines the Stop Loss as a fixed dollar amount. Useful for capping losses at a specific dollar value. A value of 0 disables this option.
percentage_slSets the Stop Loss as a percentage of the entry price. A value of 50 means the SL triggers at a 50% loss from the entry price.
order_typeSpecifies the type of order to execute. MKT (Market Order) ensures immediate execution at the current market price.
update_tpIf true, allows the Take Profit level to be dynamically updated for open trades based on new alerts. If false, the TP remains fixed once set.
update_slIf true, allows the Stop Loss level to be dynamically updated for open trades based on new alerts. If false, the SL remains fixed once set.
tokenA unique identifier (e.g., URe9daf2bc49008ba62dc3) for authenticating your PickMyTrade account. This ensures secure communication between TradingView and your trading platform.
duplicate_position_allowIf true, permits multiple trades in the same direction to stack (e.g., adding to a long position with another buy signal). If false, duplicate trades are blocked.
platformSpecifies the trading platform, in this case RITHMIC, which executes the trades based on the alert.
reverse_order_closeIf true, a reverse order automatically closes an existing position. For example, a "sell" signal will close an open long position before opening a short position.
multiple_accountsAllows the alert to send orders to multiple accounts simultaneously. Each entry in this array includes:
token: Matches the main token for account authentication.
account_id: Specifies the target account (e.g., BG28198).
connection_name: Identifies the specific Rithmic connection (e.g., RITHMIC1).
risk_percentage: Sets the risk allocation for this account (e.g., 0 for fixed quantity).
quantity_multiplier: Adjusts the trade size for this account (e.g., 1 means the same size as quantity, 2 doubles it).

2. Strategy JSON Configuration #

This JSON structure is designed for strategy-based trading alerts. It follows TradingView’s {{strategy.market_position}} logic to determine entry/exit conditions dynamically.

JSON Breakdown (Strategy)


JSON Breakdown (Strategy) #

{
  "symbol": "NQM5",
  "date": "{{timenow}}",
  "data": "{{strategy.market_position}}",
  "quantity": "{{strategy.market_position_size}}",
  "risk_percentage": 0,
  "price": "{{close}}",
  "tp": 0,
  "percentage_tp": 100,
  "dollar_tp": 0,
  "sl": 0,
  "dollar_sl": 0,
  "percentage_sl": 50,
  "update_tp": false,
  "update_sl": false,
  "token": "URe9daf2bc49008ba62dc3",
  "duplicate_position_allow": true,
  "platform": "RITHMIC",
  "order_type": "MKT",
  "pyramid": false,
  "reverse_order_close": true,
  "multiple_accounts": [
    {
      "token": "URe9daf2bc49008ba62dc3",
      "connection_name": "RITHMIC1",
      "account_id": "BG28198",
      "risk_percentage": 0,
      "quantity_multiplier": 1
    }
  ]
}

Explanation of Keys (Strategy) #

KeyDescription
symbolThe trading asset symbol (e.g., NQM5 for Nasdaq futures). This must match the symbol format used by your broker or trading platform.
dateThe timestamp of when the alert is triggered. The placeholder {{timenow}} dynamically inserts the current time when the alert fires.
dataSpecifies the trade signal using TradingView’s {{strategy.market_position}}. This dynamically determines the position type:
long (buy),
short (sell),
flat (close position or no action).
quantityDefines the number of contracts or shares to trade, dynamically set by {{strategy.market_position_size}}. This pulls the trade size directly from the TradingView strategy’s position sizing logic.
risk_percentageSpecifies the percentage of your account balance to risk on the trade. A value of 0 indicates that the trade size is fixed (based on quantity) rather than risk-based.
priceThe execution price of the trade. The placeholder {{close}} dynamically fetches the most recent closing price when the alert triggers.
tpSets a fixed Take Profit (TP) level in price terms. A value of 0 means no fixed TP is applied; TP is determined by other parameters (e.g., percentage_tp).
percentage_tpDefines the Take Profit as a percentage of the entry price. A value of 100 means the TP is set at a 100% profit target (e.g., doubling the entry price for a long position).
dollar_tpSets the Take Profit as a fixed dollar amount. Useful for targeting a specific profit in dollar terms. A value of 0 disables this option.
slSets a fixed Stop Loss (SL) level in price terms. A value of 0 means no fixed SL is applied; SL is determined by other parameters (e.g., percentage_sl).
dollar_slDefines the Stop Loss as a fixed dollar amount. Useful for capping losses at a specific dollar value. A value of 0 disables this option.
percentage_slSets the Stop Loss as a percentage of the entry price. A value of 50 means the SL triggers at a 50% loss from the entry price.
order_typeSpecifies the type of order to execute. MKT (Market Order) ensures immediate execution at the current market price.
update_tpIf true, allows the Take Profit level to be dynamically updated for open trades based on new alerts. If false, the TP remains fixed once set.
update_slIf true, allows the Stop Loss level to be dynamically updated for open trades based on new alerts. If false, the SL remains fixed once set.
tokenA unique identifier (e.g., URe9daf2bc49008ba62dc3) for authenticating your PickMyTrade account. This ensures secure communication between TradingView and your trading platform.
duplicate_position_allowIf true, permits multiple trades in the same direction to stack (e.g., adding to a long position). If false, duplicate trades are blocked.
platformSpecifies the trading platform, in this case RITHMIC, which executes the trades based on the alert.
order_typeReiterates the order type (e.g., MKT for Market Order). Ensures clarity in how the trade is placed.
pyramidIf true, enables pyramiding—stacking additional positions in the same direction as the strategy generates new signals (e.g., increasing a long position). If false, only one position is allowed at a time.
reverse_order_closeIf true, a reverse order automatically closes an existing position. For example, a short signal will close an open long position before opening the new short position.
multiple_accountsAllows the alert to send orders to multiple accounts simultaneously. Each entry in this array includes:
token: Matches the main token for account authentication.
connection_name: Identifies the specific Rithmic connection (e.g., RITHMIC1).
account_id: Specifies the target account (e.g., BG28198).
risk_percentage: Sets the risk allocation for this account (e.g., 0 for fixed quantity).
quantity_multiplier: Adjusts the trade size for this account (e.g., 1 means the same size as quantity, 2 doubles it).

#

What are your feelings

  • Happy
  • Normal
  • Sad