It would be better if I could fit "differences of consecutive terms" in the title, but I ran out of space. Anyway, here is a more precise version of my question:
Given $n,$ for any given distinct real numbers $\ x_1,\ x_2,\ \ldots,\ x_n\ $ such that $\ x_1 < x_2 < \ldots < x_n,\ $ what is the guaranteed minimum length, $\ k,\ $of the longest (ordered, i.e. increasing) subsequence $\ \left( x_{n_1},\ x_{n_2},\ \ldots,\ x_{n_k} \right)\ $ of $\ (x_1,\ x_2,\ldots,\ x_n),\ $ such that either $\ x_{n_i} - x_{n_{i-1}} \leq x_{n_{i+1}} - x_{n_i}\quad \forall\ 2\leq i\leq k-1,\quad $ or $\quad x_{n_i} - x_{n_{i-1}} \geq x_{n_{i+1}} - x_{n_i}\quad \forall\ 2\leq i\leq k-1?$
For example, if we have $ 2,5,6,9,10,12$, then the longest subsequence with the desired property has length $4$. But does every length-$6$ sequence have at least $k=4?$ If so then $k(n=6) = 4.$ The question is, what is the function $k(n)$ like in general?
1/ Answering "But does every length-$6$ sequence have at least $k=4?$" in the negative.
First we construct the difference $a_i = x_{i+1} - x_i$. Then, we want to consider the consecutive sum of terms to get to $x_j - x_i$, and find a (not necessarily strictly) monotonic sum of terms from there.
Claim: With a difference of $2, 1, 8, 1, 2$, then we can't form a monotonic sum of terms of length 3.
Corollary: In the original problem, the sequence $0, 2, 3, 11, 12, 14$ results in $k = 3$.
Conversely, given any sequence of 6 terms, then we can take any sequence of 3 terms and trivially their difference is monotonic.
2/ Showing that "Every length-7 sequence has at least k = 4"
Again we construct the difference $a_i = x_{i+1} - x_i$.
Unfortunately, this doesn't easily extend to $k = 5$.