How does A-2-3-4 perform in Omaha Hi-Lo?
A-2-3-4 vs a random Omaha-8 hand — scoops, quartered lows, and total pot share.
The PQL query
select count(scoops(hero)) as scoops,
count(winsHi(hero) and tiesLo(hero)) as quartered_lo_won_hi,
count(fractionalRiverEquity(hero) = 1/4) as quartered_overall,
avg(riverEquity(hero)) as total_equity
from game='omaha8',
hero='As2d3c4h',
villain='****' Hi-Lo functions (scoops, tiesLo, fractionalRiverEquity) split out the pot accounting.
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.