I am in the midst of making a flow chart.
Currently, I have:
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric,arrows,amsmath}
\tikzstyle{process}=[rectangle,minimum width=3cm,minimum height=1cm, text centered, draw=black, fill=orange!30]
\tikzstyle{decision}=[diamond,minimum width=3cm, minimum height=1cm, text centered, draw=black, fill=green!30]
\tikzstyle{arrow}=[thick,->,>=stealth]
\begin{document}
\begin{tikzpicture}[node distance=2cm]
\node (start) [process] {
$\text{A}_{it}$
};
\node (in1) [process, below of=start] {$\text{B}_{it}$};
\node (in2) [process, below of=in1] {$\text{C}_{it}$};
\node (pro2) [decision, right of=in1, xshift=2cm] {$\text{ D}_{it}$};
\draw [arrow] (start)--(pro2);
\draw [arrow] (in1)--(pro2);
\draw [arrow] (in2)--(pro2);
\end{tikzpicture}
\end{document}
This connects three nodes A, B, C to D.
Now, I wish to create another node, E, to the right of D, but instead of an arrow, I want to add the plus symbol.
Is there any way to do this?

\documentclass,\begin{document}, etc.). It's just so much easier if we can just copy an paste the code. – sheß Mar 05 '19 at 17:14decorations.markings. – Mar 05 '19 at 17:38