Sorry, we don't support your browser.  Install a modern browser

JSON Import for Bot Creation#620

H

Hi Cornix Team,

I would like to suggest a feature that would make it much easier to create and manage multiple bots.

Currently, all bot creation in Cornix requires going through the manual setup screens (General, Entries, Take-Profit, Stop, Risk Control). This is fine for one bot, but it becomes very time-consuming when I want to deploy the same strategy across several pairs (for example BTC/USDT, ETH/USDT, BNB/USDT, SOL/USDT).

What I would like is the ability to import JSON configurations directly into Cornix, so that I can:

  • Prepare my bot settings in JSON (with all fields: General, Entries, TP, SL, Risk Control).
  • Import the file or paste the JSON in the dashboard.
  • Automatically generate multiple bots with identical setups but different pairs.

This would save a lot of time, reduce manual errors, and make Cornix more attractive for power users who manage many bots at once.

I already have working JSON templates for my strategies. If this feature existed, I could scale up my usage of Cornix much faster.

This would let me quickly deploy the same strategy across multiple pairs (BTC, ETH, SOL etc.) without filling in all settings manually.
Here is an example JSON structure of what I would like to import:

“bot_name”: “Long-Term Growth BTC”,
“account”: “ByBit - USDT”,
“symbol”: “BTC/USDT”,
“direction”: “long”,
“margin_type”: “isolated”,
“leverage”: 3,
“amount_per_trade”: “10%”,
“entries”: “mode”: “DCA”,
“price_difference_percent”: 1.5,
“price_scale”: 1.2,
“amount_scale”: 1.3,
“number_of_orders”: 7,
“number_of_active_orders”: 7
},
“take_profits”: “distance_percent”: 2.5,
“baseline”: “average_entries”,
“trailing”: true,
“trailing_callback_percent”: 0.5
},
“stop”: “distance_percent”: 12.0,
“type”: “market”,
“reduce_only”: true
},
“risk_control”: “cooldown_minutes”: 15,
“max_concurrent_positions”: 1,
“slippage_protection”: true
}
}

Thank you for considering this suggestion!

a month ago