gadicc / node-yahoo-finance2

Unofficial API for Yahoo Finance
https://www.npmjs.com/package/yahoo-finance2
MIT License
374 stars 62 forks source link

Support for new screeners for NSE and BSE #786

Open pgupta1795 opened 1 month ago

pgupta1795 commented 1 month ago

Feature Request

Wanted Feature

Add following to the current screeners "most_actives_in", "day_gainers_in", "day_losers_in", "top_mutual_funds_in"

Use Cases

Potential Example Usage

This feature could be used in the following way:

// something here, please fill this out

 const queryOptions: ScreenerOptions = {
    scrIds: day_gainers_in,
    count: 5
    lang: 'en-US',
    region: 'in'
  };
const result = await yahooFinance.screener(queryOptions, {validateResult: false});