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 or better.
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) fill in what the raw equity number leaves out.
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.