What is the EV of a nut flush draw on a paired turn?
AhKh on 2h-7h-9c-2s against an overpair — EV per dollar at 3:1, plus river flush outs.
The PQL query
select avg(case
when winsHi(hero) then 3.0
when tiesHi(hero) then 0.5
else -1.0
end) as ev_per_dollar,
avg(outsToHandType(hero, turn, flush)) as river_flush_outs
from game='holdem',
hero='AhKh',
villain='JsJc',
board='2h7h9c2s' A case expression scores wins/ties/losses to estimate EV; outsToHandType(…, flush) counts the river flush outs.
PQL runs entirely in your browser — no install or account. New to it? See the PQL syntax reference, open the PQL engine, or browse all recipes.