##
# get the max:
my $high = $quote_model->search(
{
symbol => $symbol,
date => { '>=' => $date},
},
{'select' => [ { max => 'c', } ], }
)->single();
print "high: ", $high->c, "\n";
####
select Max(c) from stocks_daily where symbol = '?' and date >= '?'