I have scheduled an event that trigger on daily basis. It is basically a script that fetch data from the external resource and import it into the database. I have used the following codes for daily schedule.
if( !wp_next_scheduled( 'MY_SCHEDULE_EVENT' ) ) {
wp_schedule_event( time(), 'daily', 'MY_SCHEDULE_EVENT' );
}