From your question I'm not quite sure I understand how you want the child teams to be ordered.
You have a product post (a match) and you connect two existing team posts? Or add new team posts? And what should determine their order when output by the View?
Is there anything that identifies the home team as the home team and the visiting team as the visiting team?
The timestamp when a connection is made isn't saved in the database, and even if they were they would be the same if the two connections were made more-or-less simultaneously via an import.
The relationship is a many-to-many relationship? Does it involve and intermediate post type (to store relationship fields)?
If that were the case then—assuming the import routine behaves consistently—the IDs of the generated intermediate posts could be used to establish the order. But you would have to modify your View so that it queried the intermediate post type instead of the team post type (but could still output fields from the related team posts by specifying that relationship as the source in the Post Selection tab when inserting fields using the Fields and Views button.
OK, so you do have an intermediate post type (to store the relationship fields), so it might work.
If you didn't specify that the intermediate post type should be visible in the WP admin then the first thing you will need to do is to go to Toolset > Post types and edit the options for the intermediate post type and specify that it is "publicly queryable".
You can then create a View that queries these intermediate post types (it should now appear in the Content Selection).
Add a Query Filter for the post relationship (the exact choice depends on where you will be displaying this View).
For the orderby option choose by Post ID.
To recap, you connect two teams to the same product. With each connection, an intermediate post is created. Because they are created at the same time during an import they are likely to have the same post_date, so cannot be differentiated based upon when the post was created. But these intermediate posts will have distinct post IDs. The View will query and return these intermediate posts, ordered by ID.
In the output section, what do you want to display? If you want to display the names of the teams, for example, then you would use the Fields and Views button to insert the post title, and in the Post selection tab choose the related team as the source for the title.