Is it possible to add Text Labels to sub-graphs using EasyLanguage for TradeStation? I've tried Text_New() and TextLabel.Create() in indicators that I add as sub-graphs, but the text appears up on the main chart.
Can you help answer these questions from other members on futures io?
For anyone interested, here is example code to make a text label and keep it in the subgraph:
using elsystem.drawingobjects; var: elsystem.Drawingobjects.textlabel label(null);
plot1(Close);
If (LastBarOnChart = True) then begin
label = TextLabel.Create(DTPoint.Create(BarDateTime[0], low), "label");
label.ShowInPlotSubgraph=true;
DrawingObjects.Add(label);
end