Login Page - Create Account

Support Board


Date/Time: Wed, 05 Feb 2025 08:40:13 +0000



Post From: ASCIL Hide Main Line Keep All Others

[2020-02-21 16:10:32]
User439067 - Posts: 48
trend_lines.ChartNumber = sc.ChartNumber;
  trend_lines.DrawingType = DRAWING_FAN_FIBONACCI;
  trend_lines.EndDateTime = sc.BaseDateTimeIn[sc.Index];
  trend_lines.ShowLabelsAtEnd = 0;
  trend_lines.ShowAngle = 1;
  trend_lines.Color = COLOR_BLUE;
  
  trend_lines.RetracementLevels[0] = -100.0f;
  trend_lines.LevelColor[0] = COLOR_DIMGRAY;
  trend_lines.LevelStyle[0] = LINESTYLE_DOT;
  trend_lines.LevelWidth[0] = 1;

My example is above. I want to hide the 'main' line (BLUE) but keep all the retracement lines. How can I do this?