Hey Jeromy,
By default the stream in EasySocial is ordered by last modified dates. In other word, if someone like or comment on the stream, it will show on the top of the group stream.
If you would like to achieve this, you can try edit this file
JoomlaFolder/administrator/components/com_easysocial/models/stream.php and at line 33 locate the codes below,
private $streamPaginationSort = 'modified';
Replace it with,
private $streamPaginationSort = 'created';
and see how it goes.