The rescaling process was automated in a function called myStreamPlot by Rahul in this answer, which I tweaked here. To make this answer self-contained, I repeat it here.
Options[myStreamPlot] = Options[StreamPlot];
myStreamPlot[f_, {x_, x0_, x1_}, {y_, y0_, y1_}, opts : OptionsPattern[]] :=
Module[{u, v, a = OptionValue[AspectRatio]},
Show[StreamPlot[{1/(x1 - x0), a/(y1 - y0)} (f /. {x -> x0 + u (x1 - x0), y -> y0 + v/a (y1 - y0)}), {u, 0, 1}, {v, 0, a}, opts]
/. Arrow[pts_] :> Arrow[({x0, y0} + {x1 - x0, (y1 - y0)/a} #) & /@ pts], PlotRange -> {{x0, x1}, {y0, y1}}]]
Then it's easy to get a decent stream plot.
myStreamPlot[{2 A (1 - .0001 A) - .01 A L, -.5 L + .0001 A L},
{A, -1200, 12000}, {L, -20, 200}, AxesOrigin -> {0, 0}, Axes -> True]

Note that I changed the range of A and L to focus on the equilibria.
I also added axes at A=0 and L=0 since they represent isoclines of the system. This is the Lotka-Volterra predator-prey model with prey density-dependence. If you're interested in it as a ecological model, then it's only meaningful in the first quadrant, and solutions that start there remain there.