Percentage

Percentage Chart example

Percentage Charts are very similar to value charts. The range of valid values to be returned is from 0 to 100.

agent.addChart('averageVolumeIncrease', async (context, resultBuilder) => {
  // [...]

  return resultBuilder.percentage(11);
});

Last updated

Was this helpful?