Or this is the same –
<?php
$todaysDate = date('Y-m-d G:i:s', strtotime('-1 days'));
$recentPosts = new WP_Query();
$recentPosts->query('showposts=5&post_type=tribe_events&meta_key=_EventStartDate&meta_compare=>=&meta_value='.$todaysDate.'&orderby=_EventStartDate&order=ASC');
?>
<?php while ($recentPosts->have_posts()) : $recentPosts->the_post(); ?>
<?php the_title(); ?>
<?php endwhile; ?>