Hi Team
I am taking feed / live market data for Nifty Index. only 1 instrument as part of websocket.
I observer mostly everyday data / tickers are missed.
I have deployed my code in AWS and developed using node.
Consuming : only nifty index
I have seen the gap between ticker mostly everyday like for 5-6 sec to 30-45 sec.
this gap during market hour even though looking for live market price is a big drawback for any strategy,
I would like to know what wrong is happening.
here is a sample of data I am referring with a old log which i have handy right now.
This log represent the gap between 2 time which is longer than 5-6 sec I believe.
{“time”:“14:15:24”,“ltp”:23130} ==================
** Gap (00:00:07)** ================== {“time”:“14:15:31”,“ltp”:23130}
{“time”:“14:15:46”,“ltp”:23130} ==================
** Gap (00:00:09)** ================== {“time”:“14:15:56”,“ltp”:23131.55}
{“time”:“15:00:15”,“ltp”:23143.25} ==================
** Gap (00:00:26)** ================== {“time”:“15:00:41”,“ltp”:23150}
Main question is this gap is happening mostly every day,
As I am using RSI and CCI as my trading strategy. My algo wont perform during breakout or something else because my algo is not getting the data from websocket
I can understand this issue if I am consuming huge data but in this case as I told I am consuming min 1 - 6 instrument max sometimes
Please revert back because I want to know why this is happening
Hi @MAHESWARI_31155756,
The delay you have reported is quite high. We have not received complaints of delays this significant. Have you observed the same behavior on different setups, such as your local machine?
Could you please provide us with more details about your AWS setup?
Here is my aws setup.
I am feeding now
export let instrumentKeyList = [
“NSE_FO|54452”,
“NSE_INDEX|Nifty 50”,
“NSE_INDEX|Nifty Bank”,
“BSE_INDEX|SENSEX”,
“NSE_FO|35117”,
“BSE_FO|821310”
];
3 index and 3 spot.
And this is also I have observed in my local machine too. I was assuming it might be for Internet issue. So I shifted to aws to overcome this. But still same issue here. Let me check today’s log and share with you soon but I have seen the delay a lot of time.