Today, Fyers quotes() API returning same value for multiple calls at different time frames for NIFTY Index. This is the first time I have faced this issue. Does any one know how to avoid this?
[2023-11-08 10:15:00,596] {rsi_main.py:59} INFO - Time: [‘2023-11-08** 10:15:00**’], price: [19406.7], rsi:64.68
[2023-11-08 11:15:00,626] {rsi_main.py:59} INFO - Time: [‘2023-11-08 11:15:00’], price: [19406.7], rsi:64.68
[2023-11-08 12:15:00,579] {rsi_main.py:59} INFO - Time: [‘2023-11-08 12:15:00’], price: [19406.7], rsi:64.68
data = 'NSE:NIFTY50-INDEX'
response = self.fyers.quotes(data)
if response['s'] == 'ok':
ltp = response['d'][0]['v']['lp']