Get manual lines on chart

Koliko

Member
Joined
Feb 5, 2025
Posts
6
Likes
2
Hi everyone,

Is it possible to retrieve the lines, zones, and other manually drawn figures previously traced in my indicator?

Thanks a lot, have a good day
 
I imagine manually drawn lines would still be figures and using getFigures() should return a list of all of them. The problem that I can see is how would you know which figure is line you want to check for.

Maybe someone has a real answer.
 
I imagine manually drawn lines would still be figures and using getFigures() should return a list of all of them. The problem that I can see is how would you know which figure is line you want to check for.

Maybe someone has a real answer.
List<Figure> figures = getFigures();
debug(figures+"");

Nothing in console :/
 
Any ideas ?

it only returns the figures that I added via my code (addFigure(Figure fig))
 
Top