Most Active NSE & BSE Stocks | Angel One (2024)

',header: function (data) {// console.log(data.suggestions[0].total_found_results)var ret = '

Found '+data.suggestions[0].total_found_results+' Results

';return ret;},empty: '

Found 0 results

',pending: '

Searching...

',// suggestion: function (data) {// var ret = '

Found '+data.total_found_results+' Results

';// return ret;// }}}, */{name: 'Company',displayKey: 'title',source: com_bloodhound,limit: 10,templates: {header: '',empty: '

Nothing found in Companies.

',pending: '

Searching...

',suggestion: function (data) {if (data.title != null) {var html_middle_url = '' + data.content + '';} else {var html_middle_url;}// if (data.parent_type != null) {// var html_end_parent_type = '' + data.parent_type +// '';// } else {// var html_end_parent_type = '';// }return '

' + html_middle_url +'

';// return '

Most Active NSE & BSE Stocks | Angel One (1)' + data.title + ''+data.parent_type+'

';}}}).on('typeahead:selected', function (event, selection) {// console.log(selection);window.location.assign(selection.url)});}).fail(function (jqxhr, settings, exception) {// console.log( 'failed' );});}load_company_search();// Typeahead code END}); //jQuery end

If you need to know what is going on in the stock market during a day at a glance, then you must search for most active shares.Most active stocks are the heavily traded stocks in the exchange. These stocks are bought and sold most often and usually have a large number of outstanding shares. Since these shares trade frequently, they have a low bid-ask spread and high liquidity.

What Determines The Most Active Stocks?

Most active stocks are selected based on their daily volume of trade. Though there is no benchmark volume to define active stocks, it a list of shares with the most active participation from traders and investors.Market news, such as a company’s profit report, dividend announcement, or a considerable number of outstanding shares, usually drive a large trading volume for these active stocks.

Some error occured.
Please try to Reload the page

No data available

Loading...

Company Name High Low Last Price Chg % Value (Rs. cr.)

`, data: function () { return { loaded: false, items: [], curItemNo: 0, api_error: false, page: 1, perPage: 20, pages: [], total_num_items: 0, is_pages_set: false, exchange: 'NSE', index_val: 20558, blank_data: false, } }, computed: {}, methods: { fetchData: function () { var self = this; this.loaded = false; if( self.exchange == 'NSE' ){ self.index_val = 20559; } jQuery.ajax({ url: 'https://www.angelone.in/custom-api/ab-share-market-proxy.php', method: 'POST', /*headers: { "Authorization": "Basic " + btoa('angelbroking' + ":" + 'a!n!g!e!l') },*/ dataType: 'json', data: '{"apiname":"GetMostActive","paramlist":[{"key":"p_exchange","value":"' + self.exchange + '"},{"key":"p_index","value":"' + self.index_val + '"},{"key":"p_type","value":"VOL"},{"key":"p_pagenumber","value":"' + self.page + '"},{"key":"p_pageSize","value":"' + self.perPage + '"}]}', success: function (data) { if( data.status == -1 ){ self.blank_data = true; self.items = []; self.loaded = true; self.api_error = false; } else { self.blank_data = false; self.items = data.data[0]; self.total_num_items = data.data[1][0].totalcnt; self.paginate(self.items); self.loaded = true; self.api_error = false; if (!self.is_pages_set) { self.setPages(); self.is_pages_set = true; } } }, error: function (error) { //console.error(["Test", error]); self.loaded = false; self.api_error = true; } }); }, getItems: function () { this.fetchData(); }, setPages: function () { let numberOfPages = Math.ceil(this.total_num_items / this.perPage); for (let index = 1; index <= numberOfPages; index++) { this.pages.push(index); } }, paginate: function (items) { let page = this.page; let perPage = this.perPage; let from = (page * perPage) - perPage; let to = (page * perPage); return items.slice(from, to); } }, mounted: function () { this.fetchData(); //this.setPages(); /*var self = this; setInterval(function () { self.fetchData(); }, 300000);*/ }, /*created: function (){ this.setPages(); //this.fetchData(); },*/ watch: { /*items: function () { this.setPages(); },*/ exchange: function () { this.page = 1; this.getItems(); }, page: function () { this.getItems(); } },});var most_active = new Vue({ el: '#ab-most-active'});});

`); Vue.component('stock-ticker', { props: ['ticker'], computed: { // is_up: function () { return this.ticker.change > 0; }, is_up: function () { return this.ticker.flag == 'green'; }, // is_down: function () { return this.ticker.change < 0; }, is_down: function () { return this.ticker.flag == 'red'; }, is_null: function () { return this.ticker.flag == null; }, }, template: `

{{ticker.compname}}

{{ ticker.price }}

{{ ticker.change }}

({{ ticker.per_change }}%)

` }) Vue.component('stock-tickers', { props: ['loaded', 'tickers'], template: `

` }); var stockTickerApp = new Vue({ el: '#ab-stock-ticker-container', data: { loaded: false, tickers: [], }, methods: { fetchTickers: function () { var self = this; self.loaded = false; $.ajax({ // url: 'https://compliance.angelbroking.com/ABMAOpenApi/api/OpenApi/GetIndexTicker?v2', url: 'https://www.angelone.in/custom-api/ab-share-market-proxy.php', method: 'POST', dataType: 'json', data: '{"apiname": "GetTickerQuotes", "paramlist": null }', success: function (data) { self.tickers = data.data; self.loaded = true; }, error: function (error) { console.error(error); } }); }, randomUpdate: function () { this.tickers = this.tickers.map(function (o) { if ((Math.floor(Math.random() * 2) == 0)) { o.price = o.price + 1; } else { o.price = o.price - 1; } return o; }); } }, mounted: function () { this.fetchTickers(); var self = this; // Update every 5 minutes setInterval(function () { self.fetchTickers(); }, 300000); // setInterval(function() { self.randomUpdate(); }, 1000); } }); }); //jQuery end

Stocks forming the benchmark index also feature in the list of most active stocks. For that matter, stock exchanges’ most active stocks list of the day comprising 10 to 20 highest traded stocks, includes the stocks from BSE SENSEX and NIFTY 50. Apart from company shares, other asset classes such as bonds, ETFs, and futures also regularly feature in this list.

It is a critical tool for all investors and traders to discover the most active stocks during the day with a significant shift in volume and price.Angel One’s most active stock chart comprises stocks and critical metrics like day’s high and low, percentage change, last traded price, volume, and the like, to offer a comprehensive understanding to investors.

Most Active NSE & BSE Stocks | Angel One (2024)
Top Articles
Latest Posts
Article information

Author: Kareem Mueller DO

Last Updated:

Views: 6216

Rating: 4.6 / 5 (46 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Kareem Mueller DO

Birthday: 1997-01-04

Address: Apt. 156 12935 Runolfsdottir Mission, Greenfort, MN 74384-6749

Phone: +16704982844747

Job: Corporate Administration Planner

Hobby: Mountain biking, Jewelry making, Stone skipping, Lacemaking, Knife making, Scrapbooking, Letterboxing

Introduction: My name is Kareem Mueller DO, I am a vivacious, super, thoughtful, excited, handsome, beautiful, combative person who loves writing and wants to share my knowledge and understanding with you.