Skip to main content

multiStreetStackOffThreshold

Estimate the equity needed to stack off over multiple streets.

multiStreetStackOffThreshold(pot: number, effectiveStack: number, equity: number, streetsRemaining: number): number

Import

const poker = require('poker-calculations');

ESM (Node):

import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');

When to use

Use multiStreetStackOffThreshold when you need to estimate the equity needed to stack off over multiple streets.

How to use

const poker = require('poker-calculations');
const range = new Float64Array(1326);
range.fill(1 / 1326);

const result = poker.multiStreetStackOffThreshold(range, range, ['Qh', 'Jh', '2c'], 100, [33, 66, 100]);
console.log(result);

See also

betAsPotFraction · expectedValueRaise