Login Page - Create Account

Support Board


Date/Time: Fri, 26 Apr 2024 04:59:05 +0000



Post From: ACSIL - get all values of all horizontal lines on the chart

[2022-05-22 12:57:49]
maxima120 - Posts: 144
how do I get a chart horizontal lines or rays values from a study? I need to write them in a file

I tried UserDrawnChartDrawingExists and ChartDrawingExists but no lines found although there are several lines on the chart


for(int i = 0; i < 2147483647; i++)
{
if (sc.UserDrawnChartDrawingExists(chartId, i))
{
SCString msg;
msg.Format(" Found line #: %d", i);
sc.AddMessageToLog(msg.GetChars(), 0);
}
}

Date Time Of Last Edit: 2022-05-22 13:23:27