I've an indicator which I would like to be 0 when a new position is created in addition to First Bar of Session. I was able to figure out First Bar of Session, but how do I call out new position?
private double calloutzero;
if ((IsFirstBarOfSession) || (___________))
{
calloutzero = 0;
}

Comment