Just hide the left button after loading the page. Since it will always start from the first slide.
$('#myCarousel > .left.carousel-control').hide();
Or manually slid event after the page loads.
$('#myCarousel').on('slid', '', function () { ... }).trigger('slid');
source share