Skip to content

Division by zero error #472

Description

@ebadran

Currently, the divide function in src/helper/numArray.ts does not handle division by zero errors.

Some assets have limited trading volume, and therefore may have a day's open, close, high, and low prices all equal. In these cases, applying certain indicators (e.g. the Random Index KDJ) to those stocks will result in their functions returning arrays of NaNs.

Steps to reproduce the behavior:

  1. Obtain the historical OHLC data from the CELU stock, from 09-Aug-2019 until the current date.
  2. Apply the KDJ indicator to that stock's data: const { k, d, j } = kdj(highs, lows, closings, defaultConfig);
  3. The result will be arrays of NaNs.

Additional context:

The above error will also occur with the following indicators:

  • Random Index (KDJ)
  • Chaikin Oscillator
  • Mass Index
  • Accumulation Distribution

Suggestion:

A quick fix would be to refactor the divide function in src/helper/numArray.ts so that it returns 1 when dividing by zero:

export function divide(values1: number[], values2: number[]): number[] {
  checkSameLength(values1, values2);

  const result = new Array<number>(values1.length);

  for (let i = 0; i < result.length; i++) {
    if (values2[i] === 0) {
      result[i] = 1;
    } else {
      result[i] = values1[i] / values2[i];
    }
  }

  return result;
}

Alternatively, you could divide by 0.0000001:

result[i] = values1[i] / (values2[i] || 0.0000001);

I hope this helps.

Best regards,

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions