I'm trying to read in a Renko bar chart info from POC indicator, so that I need tick data.
I've included this sentence to read the tick data:
else if (State == State.Configure)///
{
AddDataSeries(BarsPeriodType.Tick,1);
}
I hope it is correct.
Still I'm printing the output to the output window, but it is there where I get the problems.
I think my indicator calculates every bar as a "tick" bar, instead as a "Renko" bar, because I'm getting a lot of values at the output window for every time (several times per second).
I really only want the values after a Renko bar is finished.
I hope my question is clear

Thanks,

Comment