It has a fibanacci drawing
after it goes through the IsFirstTickOfBar
I check volume for my algorithm
What I found out is if I try Calculate.OnBarClose it will draw my fibanacci
but it won't be able to calculate my volume and if I use Calculate.OnEachTick;
It will not draw my fibinacci but calculate my volume
Calculate.OnEachTick;
if (IsFirstTickOfBar)
{
Draw fibanacci
}
else
{
calculate volume
}
why will it not draw my fib?
Would try and catch slow the process in order for the fib to draw?

Comment