mge = {x'[t] == 0.4 x[t - 18]/(1 + x[t - 18]^10) - 0.2 x[t], x[t /; t <= 0] == 1/2};
sol = NDSolve[mge, x, {t, 500, 1000}]
ParametricPlot[{x[t], x[t - 18]} /. sol, {t, 518, 1000}, Frame -> True, FrameLabel -> {x[t], x[t - 18]}]