I keep a JSON file on my machine that is updated continuously with fresh trade signals. Each entry contains the symbol, quantity and side, and every time the file changes I need a Python 3 program that will read those records and fire the corresponding market orders directly to the Kotak Neo trading platform through its public API. Only market orders are required for now; if the position already exists or the request is rejected, the code should capture and log that response instead of stopping. The workflow I have in mind is straightforward: pick up the local JSON, parse it, authenticate against Kotak Neo, place the market order, then write the order id, status and timestamp back to a simple log (CSV or JSON) so I can reconcile executions later. A lightweight command-line tool is fine as long as it is robust and easy for me to tweak. Deliverables • Clean, well-commented Python source files (*.py) • A short README showing setup, environment variables required for Kotak Neo, and a sample JSON schema • Simple error handling and token-refresh logic proven with a small test trade using Kotak Neo’s sandbox (or live if easier) I need a good GUI and order execution to monitor. I already have API credentials and will test with my own account once the script is delivered.