I've spent hours trying to draw the picture below in tikz. I can't figure out how to draw the diverging arrows, would be very grateful for any advices on the matter!
Thank you in advance!
I've spent hours trying to draw the picture below in tikz. I can't figure out how to draw the diverging arrows, would be very grateful for any advices on the matter!
Thank you in advance!
Considered suggestions in above comments I draw using TikZ (for exercise) the following graph:
\documentclass[tikz,border=3mm]{standalone}
\usetikzlibrary{arrows.meta,positioning,quotes}
\begin{document}
\begin{tikzpicture}[auto,
node distance = 22mm and 66mm,
MN/.style = {draw, text width=22mm, minimum height=16mm,
align=flush center},
arrow/.style = {-{Triangle[]},thick}
]
\node (n1) [MN] {Protection seller (investor)};
\node (n2) [MN,right=of n1] {Protection buyer};
\node (n3) [MN,below=of n2] {Reference borrower};
%
%\draw[arrow] ([yshift=4mm] n1.east) to ["Premium"] ([yshift=4mm] n2.west);
\draw[arrow] ([yshift=4mm] n2.west) to ["Premium" '] ([yshift=4mm] n1.east);
\path ([yshift=-4mm] n1.east) -- coordinate (a1)
([yshift=-4mm] n2.west) coordinate (a2);
\draw[arrow] (n1.east |- a1) to ["No credit event","Credit event" '] (a1);
\draw[arrow] (a1) |- node[pos=0.75,above] {No payment} ([yshift=+2mm] a2);
\draw[arrow] (a1) |- node[pos=0.75,below] {Payment} ([yshift=-2mm] a2);
%
\draw[arrow] ([xshift=-6mm] n2.south) edge node[below,sloped] {Repayment}
([xshift=-6mm] n3.north)
(n3) edge node[below,sloped] {Interest} (n2)
([xshift=+6mm] n3.north) to node[below,sloped] {Repayment}
([xshift=+6mm] n2.south);
\end{tikzpicture}
\end{document}
Edit: in code is changed arrow orientation ...
\coordinateto create a coordinate at the relevant point, probably, so that I could draw an arrow to it and then two arrows from it. – cfr Apr 27 '16 at 21:49