I have a quadratic graph.
I know that I have the following options:
Vietes formula, vertex (x0,yo), the quadratic equation to get x1,x2. Somehow I don't see how I would get the coefficients A and B. The C coefficient is C=3 as it can be read from the graph easily.
How should I tackle the problem?
Just to note that this graph is the function derivative of a previous graph, in other words
$${f(x)'}=Ax^2+Bx-3$$
The problems says that I have to find $$f(x)$$ I know that I have to integrate and therefore easily get the equation but I need the coefficients.

You have the equation with two unknowns $f'(x)=Ax^2 + Bx - 3$ and from the graph you know $(2,5)$ and $(-2,1)$ are points on $f$. So you have a system of equations,
\begin{align*} 5 &= A(2)^2 + B(2) - 3 \\ 1 &= A(-2)^2 + B(-2) - 3 \end{align*}
So $A=\frac 3 2$, $B=1$ meaning $f'(x)=\frac 3 2 x^2 + x - 3$ and $f(x) = \frac 1 2 x^3 + \frac 1 2 x^2 - 3x + c$