GetLastQuoteShortWithClose : Returns LastTradePrice of Single Symbol (short) with Close of Previous Day
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), Close (Previous Trading Day’s Close), 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: "GetLastQuoteShortWithClose",
Exchange: "NFO",
InstrumentIdentifier: "NIFTY25MAR21FUT",
isShortIdentifier: "true"
};
doSend(request);
Example of returned data in JSON format
{
"Exchange":"NFO",
"InstrumentIdentifier":"NIFTY25MAR21FUT",
"LastTradeTime":1592992800,
"BuyPrice":10296.05,
"Close":10467.7,
"LastTradePrice":10298.9,
"SellPrice":10297.25,
"MessageType":"LastQuoteShortWithCloseResult"
}