Indicator displaying under Price bar

lndshrk

Member
Joined
Jun 13, 2019
Posts
13
Likes
2
Every so often, I get an indicator that appears under a price bar.. like this 105 Mouse-dragging to "scrunch up the chart" seems to make the chart recalculate/repaint and then the indicator is displayed above the bar as intended.. Any ideas on what causes inconsistent behavior like this and how should I resolve it?

Is there a programmatic way to make the chart recalculate to clean up rendering errors like this?
 

lndshrk

Member
Joined
Jun 13, 2019
Posts
13
Likes
2
I've found the isRepaintAllOnUpdate() and implemented it like:

public boolean isRepaintAllOnUpdate()
{
return true;
}

Is this a method I need to actively call in the study, or is it read in when the study is activated?
 

MotiveWave_Joe

Moderator
Staff member
Joined
Mar 26, 2019
Posts
223
Likes
67
Hi lndshrk,

Are you experiencing this with any of the built in studies? If so, let me know which one and how to reproduce it and I will take a look at it.

Thanks.
 
Top