This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Gets LTP from ICICI Direct. | |
* | |
* @param {string} symbol Symbol for this Last Traded Price is required | |
* @return {string} ltp Current LTP from ICICI Direct | |
* @customfunction | |
*/ | |
function ILTP(symbol) { | |
var url = 'https://secure.icicidirect.com/IDirectTrading/Trading/trading_stock_quote.aspx?Symbol=' + symbol | |
console.log('URL :' + url); |
OlderNewer