In many cases calculating trend by using least-squares method is best decision. But sometimes it is overabundant. What I need is just to know, whether trend is positive or not. Can I use such approach (difference in weight coefficient) and how to determine it's approximation error?
($x_1*1$ + $x_2*2$ + ... + $x_n * n$) - ($x_1*n$ + $x_2*(n-1)$ + ... + $x_n * 1$)
Examples:
Negative
19 17 11 1 4 4 6 3 2 2 => -283
Positive
0 0 1 3 1 1 7 5 6 12 => 182
Update
Calculation using this approach and least-squares approach

x2*n-1did you mean $x_2\times(n-1)$ or $(x_2\times n)-1$? – polfosol Nov 22 '16 at 05:34