lfreneda/statusinvest

View on GitHub

Showing 5 of 19 total issues

Function getSectorSubSectorAndSegmentInfo has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
Open

const getSectorSubSectorAndSegmentInfo = ({ html, stockInfo }) => {
  const $ = cheerio.load(html)
  const links = $('a.white-text')
  for (const link of links) {
    const isSectorLink = link.attribs.href && link.attribs.title && link.attribs.title.includes('Ver outras empresas do setor')
Severity: Minor
Found in src/toReadableStockPageInfo.js - About 2 hrs to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Function run has 52 lines of code (exceeds 25 allowed). Consider refactoring.
Open

const run = async () => {
  const brStocks = await statusInvest.getStocksInfo()
  for (const stock of brStocks) {
    console.log(`[BR] Getting ${stock.Ativo}'s historial indicators`)
    const stockHistoricalInfo = await statusInvest.getStockHistoricalInfo({
Severity: Major
Found in bin/cacheStocksInfo.js - About 2 hrs to fix

    Function toReadableStocksResult has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    const toReadableStocksResult = (statusInvestStock) => {
      return {
        Ativo: statusInvestStock.ticker,
        Empresa: statusInvestStock.companyName,
        Cotação: statusInvestStock.price,
    Severity: Minor
    Found in src/toReadableStocksResult.js - About 1 hr to fix

      Function getStocksInfo has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      const getStocksInfo = async () => {
        const stocksInfoUrl = 'https://statusinvest.com.br/category/advancedsearchresult?search=%7B%22Sector%22%3A%22%22%2C%22SubSector%22%3A%22%22%2C%22Segment%22%3A%22%22%2C%22my_range%22%3A%220%3B25%22%2C%22dy%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_L%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_VP%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_Ativo%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22margemBruta%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22margemEbit%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22margemLiquida%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_Ebit%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22eV_Ebit%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22dividaLiquidaEbit%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22dividaliquidaPatrimonioLiquido%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_SR%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_CapitalGiro%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22p_AtivoCirculante%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22roe%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22roic%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22roa%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22liquidezCorrente%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22pl_Ativo%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22passivo_Ativo%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22giroAtivos%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22receitas_Cagr5%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22lucros_Cagr5%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%2C%22liquidezMediaDiaria%22%3A%7B%22Item1%22%3Anull%2C%22Item2%22%3Anull%7D%7D&CategoryType=1'
        const { data } = await axios.request(stocksInfoUrl, {
          headers: {
            accept: '*/*',
      Severity: Minor
      Found in src/cache.js - About 1 hr to fix

        Avoid too many return statements within this function.
        Open

            return originalValue
        Severity: Major
        Found in src/toReadableStockPageInfo.js - About 30 mins to fix
          Severity
          Category
          Status
          Source
          Language