I'm using TikZ to draw a flowdiagram. How to I add a curved arrow from the fourth box to the second one, where the arrow should start from the left side of the box 4?
\begin{figure}
\centering
\begin{tikzpicture}[node distance=2cm]
\node (start) [startstop] {Start with a set of size $1$};
\node (in1) [startstop, below of=start] {Cycle over all considered input series};
\node (in2) [startstop, below of=in1] {Select the input variable that resulted in the best RMS};
\node (in3) [startstop, below of=in2] {Add the selected input variable series to the previous set};
\draw [arrow] (start) -- (in1);
\draw [arrow] (in1) -- (in2);
\draw [arrow] (in2) -- (in3);
\end{tikzpicture}
\caption{Flow diagram showing the full steps used to construct the signal function.}
\label{fig:diagrama2}
\end{figure}
