Hallo, I am trying to implement and indicator which works on full BARs:
inputParameterInfos = new InputParameterInfo[] {new InputParameterInfo("Input Data", InputParameterInfo.Type.BAR )};
I think i've quite accomplished it, the problem is now that when the signal get's calculated at first, it uses FULL (eg. 5 minutes) BAR, then it starts to go live and at each screen update of the price graph ( which is like every 5 second), the signal gets computed, so the period is NOT 5 minutes but the graph refreshing period!

Is there a way to proceed with the calculation only when a NEW bar of the default active period is generated?
(like in the strategy class where "if period!=5Min" -> return )
Any hints, or reference to example indicator that gets updated only on NEW full bar would be greatly appreciated!
thank you
Pietro