var fDesc=new Array();
fDesc[0] = "Your search for realtime, true tick-by-tick data direcly from National Stock Exchange of India (NSE) for Cash Market Segment and Futures & Options Section (F&O segment) - ends here. This product is compatible only with AmiBroker.
Features:
-Data directly from NSE Servers. We are authorised distributor of National Stock Exchange of India for the data. So trade with complete peace of mind.
-Low latency realtime data with ultrafast delivery. True tick-by-tick data with time-stamp of 1 sec. It means our data is 5 times faster than most data vendors whose data updates every 5 second (aka snapshot data).
-Zero delay realtime data. Compare it with your broker's terminal anytime.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}