How to draw a solid line at Y=0 on MACD Indicator
How to draw a solid line at Y=0 on MACD Indicator
I would like my MACD indicator to have an horizontal solid line at Y = Zero. What is the best way to go about that? Thanks.
Re: How to draw a solid line at Y=0 on MACD Indicator
Hi Phineas,
The easier way to draw a straight line in a chart usually is using ColorLine tool:
The easier way to draw a straight line in a chart usually is using ColorLine tool:
Code: Select all
Chart1.Tools.Add(TColorLineTool.Create(self));
with (Chart1.Tools[Chart1.Tools.Count-1] as TColorLineTool) do
begin
Axis := Chart1.Axes.Left;
Value := 0;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |