Given a list of integers, write a function to return the longest continuous increasing subsequence (strictly ascending) in the list.
[1, 3, 5, 4, 7, 8, 9, 2, 6]
[4, 7, 8, 9]
Bot