api call for index % change

gautam_s60
which api call replies index % change compared to last days close as quote response structure is saying so but not getting in actual response.

https://kite.trade/docs/connect/v3/market-quotes/#market-quotes
  • sujith
    You need to calculate percentage change at your end. API only provides net change.

    changePercent = ((lastPrice - closePrice) * 100)/ closePrice
Sign In or Register to comment.