I am a developer and have built my own strategy in Python that monitors NIFTY.
I have already generated the JSON syntax from the AlgoDelta’s JSON Bridge.
Now what I want is that whenever my Python code generates a Buy signal, the Buy JSON syntax should be sent to AlgoDelta, and whenever a Sell signal comes, the Sell JSON syntax should be sent automatically.
The JSON Bridge is designed exactly for this type of integration.
You simply need to generate your JSON syntax from the JSON Bridge and send the appropriate JSON payload to the JSON Bridge webhook whenever your strategy conditions are satisfied.
For example, suppose you have generated the following syntaxes.
Now whenever your Python strategy generates a Buy signal, the Call Option syntax will be executed automatically.
Similarly, whenever a Sell signal is generated, the Put Option syntax will be sent to AlgoDelta and executed.
This is one of the easiest ways to integrate your Python strategies directly with AlgoDelta’s JSON Bridge.
Verified Solution
Appreciate the effort you put into explaining it with a real example. Now I can be able to connect the python code with the Json Bridge. Thanks!– Radhesh JoshiJul 28