I am very sorry Srijan. This is a very complex application based on django and i only manage a part of it so i really donno whaere to search for that code ur looking for. I just need a confirmation that this particular index "NIFTY50" can be subscri…
I hope this is the one ur asking for
def on_ticks(self, ws, ticks):
tick_models = [TickStore(**tick) for tick in ticks]
TickStore.objects.bulk_create(tick_models)
self.update_status(True, "Started ticker")
loggi…