View Full Version : Indicator: Checking for first tick?
higler
06-19-2007, 08:29 AM
In an indicator, is the best way to check for the first tick of a new bar to check for a change in CurrentBar? Will this work irrespective of the setting of CalculateOnBarClose and for both time based and tick based bars? I am looking for a general way to determine when a new bar starts and I would like to detect the first tick. Thanks.
NinjaTrader_Ray
06-19-2007, 08:42 AM
Check the property FirstTickOfBar.
http://www.ninjatrader-support.com/HelpGuideV6/FirstTickOfBar.html
This property is irrelevant if running CalculateOnBarClose == true since OnBarUpdate() is only called once per bar.
higler
06-19-2007, 08:54 AM
I read the help, but I thought that it said that FirstTickOfBar only worked in strategies. Does it work for indicators also?
higler
06-19-2007, 09:15 AM
Oops. My mistake. Help says that its a property of both Custom Indicator and Custom Strategy. I was confused by the first sentence that said that it was only of value in strategies that run tick by tick. I need some more Jolt. Thanks.