shortcode order for event custom post type

I figured it out. For anyone who needs to find this solution I edited the above code. I changed:

'order' => 'DESC'
to
'order' => 'ASC'
, and
'orderby' => 'meta_value_num'
to
'orderby' => 'meta_value'

to achieve the order I wanted.