Most of my custom studies stopped working since Motivewave 7 and I think I now figured out why:
@Override
public void onBarUpdate(DataContext dataContext) {
debug("onBarUpdate called!");
}
never creates any log line anymore. onTick(DataContext dataContext, Tick tick) however does! Did anyone else notice this behavior? I guess I need to change my code to use this method instead.
My StudyHeader includes the necessary
requiresBarUpdates = true,
supportsBarUpdates = true,
barUpdatesByDefault = true,
(I added all of them, and it still does not work)
@Override
public void onBarUpdate(DataContext dataContext) {
debug("onBarUpdate called!");
}
never creates any log line anymore. onTick(DataContext dataContext, Tick tick) however does! Did anyone else notice this behavior? I guess I need to change my code to use this method instead.
My StudyHeader includes the necessary
requiresBarUpdates = true,
supportsBarUpdates = true,
barUpdatesByDefault = true,
(I added all of them, and it still does not work)




