//if we addedthree last time, then remove those three bars; otherwise just remove the bar we added
if (addedThree)
{
bars.RemoveLastBar(isRealtime);
bars.RemoveLastBar(isRealtime);
bars.RemoveLastBar(isRealtime);
}
else
{
bars.RemoveLastBar(isRealtime);
}
Thanks.

Comment