How strong is AAKK double-suited in PLO?
The strongest standard PLO hand against three random opponents: equity, hand-type breakdown, and the average number of players making a flush.
The PQL query
select avg(riverEquity(hero)) as equity,
histogram(handType(hero, river)) as hero_distribution,
avg(handsHaving(minHandType, river, flush)) as flushes_at_table
from game='omahahi',
hero='AAKK$ds',
v1='****', v2='****', v3='****' hero='AAKK$ds' is the double-suited form; the histogram and handsHaving(…, flush) add texture to the raw equity.
PQL computes entirely in your browser, no install or account. New to it? See the PQL syntax reference, open the PQL engine, or browse all recipes.