In my problem, I am effectively plotting a parametric function that depends also on an outside parameter, e.g., the real/imaginary parts of
ff[tt_, param_] := (tt + I * param)^2
I plot one parametric plot in tt for each of several values of param, i.e., if I let param vary in {1, 2, 3}, and tt vary in [-3, 4], I get

In addition, one of the more complicated functions I am using is hard to compute, so in that case, I use a medium-fine grid of tt and use ListPlot or Graphics primitives instead of ParametricPlot. I.e., I get something like this:

The main issue is that I want to give the reader some sense of the direction in which tt is increasing, but I cannot use color as that is already being used to distinguish the different values of param. I could just use text labels, but for my diagrams, that would tend to clutter the picture if they were typed with any frequency. Therefore, I would prefer to use another method.
Main Question
Short of adding text labels to the picture, how can I visually display the direction of increase in the parameter tt in a multiple-graph plot? I am interested in the answer for both ParametricPlot and a ListPlot or other discrete plot that mimics it.
I will put my attempted solutions thus far as answers. One works for both types of plots, but the other only works for a discrete plot.
**Note: I am using Mathematica 9.0.1, so the ParametricPlot/PlotLegends disagreement, as noted in ParametricPlot and PlotLegends don't seem to cooperate, applies.



