Indicator overlayed in the robot?

Created at 28 Jul 2013, 21:10
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!
IR

iRobot

Joined 17.02.2013

Indicator overlayed in the robot?
28 Jul 2013, 21:10


I guess it's super simple question, but anyways: how to overlay indicatr in the robot backtesting chart? I know how to implement it in the robot, but I am still unseccessful how to see it on the chart.

Thanks.


@iRobot
Replies

cAlgo_Fanatic
29 Jul 2013, 10:54

You can only add an indicator manually for the time being. We will add functionality for robots to draw indicators in the future.


@cAlgo_Fanatic

AlexanderRC
15 Apr 2014, 21:01

Any news for this feature?

This will greatly aid debugging if cBot is based on some indicator(s).


@AlexanderRC

Spotware
16 Apr 2014, 09:20

No news. We have this feature in our long term roadmap.


@Spotware

Mikro
09 Feb 2016, 23:03

RE:

Hi there,

I am struggeling with the same issues.

I want to draw indicators and graphic opbjects in the chart while the cBot is active, as well as in backtesting mode.

Is it now possible while trading or in backtesting mode?

 

THX

Spotware said:

No news. We have this feature in our long term roadmap.

 


@Mikro

Mikro
11 Feb 2016, 23:15

No Idea anybody how to make the cBot draw an indicator in the chart when executed?


@Mikro

Spotware
17 Feb 2016, 11:51

Dear Trader,

It's still not possible to draw an indicator through a a cBot on the chart.

This feature will be available in the future. However, we cannot provide you with an ETA. Stay tuned. 

Additionally, you can post your ideas/suggestions to http://vote.spotware.com/


@Spotware

ppstrader
05 Apr 2019, 05:51

Any news about drawing indicators on a Bot's chart?


@ppstrader

PanagiotisCharalampous
05 Apr 2019, 10:07

Hi ppstrader,

Thank you for posting in our forum. This feature is still not available.

Best Regards,

Panagiotis


@PanagiotisCharalampous

ctid1491201
08 Dec 2019, 18:52

Still no ETA?

I'm also heavily interested in this feature as it helps a lot on debugging a bot. Is there still no ETA after 6 years?


@ctid1491201

ctid1491201
08 Dec 2019, 19:18

Here's a feature request from the suggestions forum: 

 


@ctid1491201

elmpie
19 Mar 2020, 12:07

RE: Still no ETA?

Still not? Has been since 2013?

 

ctid1491201 said:

I'm also heavily interested in this feature as it helps a lot on debugging a bot. Is there still no ETA after 6 years?

 


@elmpie

... Deleted by UFO ...

PanagiotisCharalampous
19 Mar 2020, 12:39

Hi elmpie,

Unfortunately there no plans for this feature in the upcoming releases.

Best Regards,

Panagiotis 

Join us on Telegram


@PanagiotisCharalampous

ppstrader
11 Mar 2021, 08:18 ( Updated at: 11 Mar 2021, 08:19 )

PanagiotisCharalampous said:

Unfortunately there no plans for this feature in the upcoming releases.

It's a pity that there is no method to visualize indicator on the robot Chart. If if is possible to add an indicator object on the robot's chart manually using right click, it shouldn't be a big problem to do the same in the code.

But you can always draw lines on a chart using DrawTrendLine:

public static void DrawMovingAverageOnChart(Chart chart, MovingAverage ma, Color col)
{
    int lastidx = Math.Min(chart.BarsTotal, ma.Result.Count);
    for (int idx = 0; idx < lastidx; ++idx)
    {
        chart.DrawTrendLine(String.Concat("test-", idx), idx, ma.Result[idx], idx + 1 , ma.Result[idx + 1], col, 2);
    }
}

 


@ppstrader