I have an Indicator with a cross strategy.
Whenever the two plots are crossing I would like to mark the cross with a dot.
Unfortunetely the dots are always a bit moved due to the reason, that the cross is sometimes nearer to the last bar and sometimes more in the middle.
I use:
if (CrossBelow(Wt1, Wt2, 1))
{
if (CurrentBar >= Bars.Count - DrawOnlyOnXLastBars)
Draw.Dot(this, CurrentBar.ToString() + "_RedCross", true, Time[0], Wt1[0], Brushes.Red);
};
Is there a way to get the dot been drawn directly on the cross?
Thanks in advance.
Cheers

Comment