@AnakManis Its certainly possible. Here is a bubble example for you using the "5% Stop" plot -Now as an addition, is there a way of adding AddChartBubble to it to be able to see the target percentages? Or is that not doable? Thanks.
Code:
input move_bubble_forward_how_many_bars = 10;
def bm = move_bubble_forward_how_many_bars;
AddChartBubble(!IsNaN(close[bm]) && IsNaN(close[bm-1]),"5% Stop", Round("5% Stop"), "5% Stop".TakeValueColor(), no);
See if you are able to code the remaining bubbles. If not, post the exact code that you are currently using and I will add them for you.