Chart.DrawFibonacciRetracement

Created at 26 Jan 2021, 18:03
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
sifneos4fx's avatar

sifneos4fx

Joined 15.11.2017

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

 

 


@sifneos4fx
Replies

prosteel1
26 Jan 2021, 18:29

RE:

sifneos4fx said:

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

 

 

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

PanagiotisCharalampous
27 Jan 2021, 08:54

Hi Patrick,

Unfortunately this is not possible at the moment.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

sifneos4fx
27 Jan 2021, 09:13

Thanks!

Best regards, 

 


@sifneos4fx