Referenced indicator (Fractals) draw icons by itself, please fix (cTrader Automate 4.8.27)

Created at 20 Sep 2023, 04:43
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!
Waxy's avatar

Waxy

Joined 12.05.2015

Referenced indicator (Fractals) draw icons by itself, please fix (cTrader Automate 4.8.27)
20 Sep 2023, 04:43


Hello Spotware,

Since this last update, declaring any instance of the Fractals indicator makes this indicator get drawn on the chart, this is a problem as I cannot use the indicator and get rid of it's plots, would appreciate a fix as soon as possible.

Regards,


@Waxy
Replies

Exzell
20 Sep 2023, 04:50 ( Updated at: 20 Sep 2023, 06:03 )

Yes i am having the same issue, all of my fractals based indicators plot red and blue triangles when they should not be there, which cannot be turned off and the only way to remove is to remove my indicator - which should not be the case


@Exzell

Spotware
20 Sep 2023, 06:16

Dear traders,

Please provide us with exact steps to reproduce these issues.

Best regards,

cTrader Team


@Spotware

Waxy
20 Sep 2023, 15:29

Hello,

Here's a sample, just any reference to fractals makes it print the values, something that didn't happen before 4.8.27.

using cAlgo.API;
using cAlgo.API.Indicators;

namespace cAlgo;

[Indicator(AccessRights = AccessRights.None, IsOverlay = true)]
public class FractalsIssue : Indicator
{
    private Fractals _fractals;

    protected override void Initialize()
    {
        _fractals = Indicators.Fractals(5);
    }

    public override void Calculate(int index)
    {
        var _ = _fractals.UpFractal[index];
    }
}

@Waxy