if (CurrentBar > 50 && IsFirstTickOfBar)
{
Print("(2) " + Input[2] + " " + CurrentBar);
Print("(1) " + Input[1] + " " + CurrentBar);
Print("(0) " + Input[0] + " " + CurrentBar);
Print("(1) " + Input[1] + " " + CurrentBar);
}
(2) 3842.25 5461
(1) 3842.5 5461
(0) 3843 5461
(1) 3842.75 5461

Comment