Here's a snippet of the program
CalculateOnBarClose = false;
base.Add(new Plot(new Pen(Color.Gray, 6f), PlotStyle.Bar, "OBV_Ratio_Hist"));
if (FirstTickOfBar) // do something
if (!FirstTickOfBar) //disable plot
( I want to draw a fragment of the candle until the first tick in the bar )
can you help me? thanks

Comment