Chart.DrawFibonacciRetracement
Created at 26 Jan 2021, 18:03
Chart.DrawFibonacciRetracement
26 Jan 2021, 18:03
Hello folks,
When I draw the fibonacci retracement or expansion tool, it is drawn with the standard levels which I dont' like. Is it possible to draw the tools using own levels?
Thanks
Patrick
Replies
PanagiotisCharalampous
27 Jan 2021, 08:54
Hi Patrick,
Unfortunately this is not possible at the moment.
Best Regards,
Panagiotis
@PanagiotisCharalampous
prosteel1
26 Jan 2021, 18:29
RE:
sifneos4fx said:
I don't think there is in Automate, only in the Trade tab when drawing manually.
In Automate I calculate my levels for trades and then wrap the drawing of them in a check so they are not drawn if it's in Optimization mode.
if (RunningMode != RunningMode.Optimization)
{
var rect1 = Chart.DrawRectangle(UniqueName, DateTime1, Price1, DateTime2, Price2, Color.Green);
rect1.IsInteractive = true;
if (DrawHorizLines == true)
{
var line1 = Chart.DrawHorizontalLine(UniqueName, Price, Color.Green);
line1.IsInteractive = true;
}
}
@prosteel1