Velora Feed — Downstream Demo

This page is served from . Replace with any whitelisted domain + your token.
idle
Symbol LTP Chg Chg % Bid Ask

Integration snippet

<script src="https://your-hub.example.com/velora-feed-client.js"></script>
<script>
  const feed = new VeloraFeed({
    endpoint: 'https://your-hub.example.com',
    token:    'your-token-here',
    subs:     [[19,2101],[19,2102],[3,1],[2,26000]],
  });
  feed.on('tick', t => console.log(t.symbol, t.ltp));
  feed.start();
</script>