Thanks for your reply. Unfortunately I followed this post's suggestion and tried changing to "past" both with ASC and DESC and it shows the past events only.
What I want to do is show the upcoming events on the home page. I have it set to 5 and right now it's showing oldest events instead of newest. I do not want to exclude old events from being displayed necessarily but future (more recent) events should be showing on top. These are the arguments I currently have:
$all_events = tribe_get_events(array(
'eventDisplay'=> 'Upcoming',
'orderby' => 'EventStartDate',
'order' => 'DESC',
'posts_per_page'=> 5
Thanks for taking a look.