could anyone help me with something very easy (I hope). I have two lines. For example:
$y = \frac { x + 4.5 } { 6 }$
(which is green line on the graph)
and
$y = 1.2 x$
(which is red line on the graph)
And I also have parabola like that:
$y = x - 5 ( 0.5 x - 0.65 ) ^ { 2 }$
I need to find coordinates to move parabola to make it tangent to both lines and with shape of parabola untouched, and lines can't be moved.
Are there any general rules to make such things. In the google I always find how to draw lines tangent to parabola and go through the point. But I can't figure it out how to make it in other direction

You can move the parabola left-right by adding an offset to $x$ and you can move it up-down adding an offset to $y$. Let's solve the problem in the more general case. The original parabola is $y=ax^2+bx+c$. The new equation for the parabola will be $$y=a(x-x_0)^2+b(x-x_0)+c+y_0$$ We will need the derivative with respect to $x$ for the tangents, so $$y'=2a(x-x_0)+b$$ Now the equations of the lines are $$y=m_1x+n_1\\y=m_2x+n_2$$ When the parabola is tangent to a line, it means that they intersect at one point, and that the slopes at that points are identical. So say we have the tangent point with line 1 at $x_1$ and with line 2 at $x_2$, so you get the following system of equations: $$\begin{align}a(x_1-x_0)^2+b(x_1-x_0)+c+y_0&=m_1x_1+n_1\\ a(x_2-x_0)^2+b(x_2-x_0)+c+y_0&=m_2x_2+n_2\\ 2a(x_1-x_0)+b&=m_1\\2a(x_2-x_0)+b&=m_2 \end{align}$$
You have a system with four equations, with four unknowns $(x_0,y_0,x_1,x_2)$.