GetLastQuoteShort : Returns LastTradePrice of Single Symbol (short)
Supported parameters
Exchange | String value like MCX | Name of supported exchange. How to get list of supported exchanges you can find here |
InstrumentIdentifier | Value of instrument identifier | How to get list of available instruments and identifiers you can find here |
isShortIdentifier | [true]/[false], default = [false] | Optional parameter. By default function will use long instrument identifier format. Functions will use short instrument identifier format if set as [true]. Example of ShortIdentifiers are NIFTY25MAR21FUT, RELIANCE25MAR21FUT, NIFTY25MAR2115000CE, etc. |
What is returned ?
Exchange, InstrumentIdentifier (Symbol), LastTradeTime, BuyPrice (Bid Price), LastTradePrice, SellPrice (Ask Price) |
LastTradeTime : This value is expressed as no. of seconds since Epoch time (i.e. 1st January 1970). Also known as Unix Time. Please Visit https://www.epochconverter.com/ to get formulae to convert human readable time to Epoch and vice versa (scroll to end of their home page) |
Sample request(JavaScript)
{ MessageType: "GetLastQuoteShort", Exchange: "NFO", InstrumentIdentifier: "NIFTY-I", }; doSend(request);
Example of returned data in JSON format
{ "Exchange":"NFO", "InstrumentIdentifier":"NIFTY-I", "LastTradeTime":1594116000, "BuyPrice":10752.1, "LastTradePrice":10755.95, "SellPrice":10755.95, "MessageType":"LastQuoteShortResult" }