. Replace with any whitelisted domain + your token.| Symbol | LTP | Chg | Chg % | Bid | Ask |
|---|
<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>