Information

Username: thierry
Member since: 19 Feb 2018
Last login: 19 Feb 2018
Status: Active

Activity

Where Created Comments
Algorithms 0 4
Forum Topics 1 4
Jobs 0 0

Last Algorithm Comments

TH
thierry · 6 years ago

I don't know how to post a picture...

TH
thierry · 6 years ago

Thanks for this indicator.

Nevertheless, I failed to use it inside a bot.

See the chart attached. Higher timeframe is H2. The indicator displays 2 for HighOrderLine between 16:00 and 19:30, and -2 between 8:00 and 15:30:

But when I print this :   Print("HighOrderLine = {0}, Line = {1}", tendency.HighOrderLine.Last(0), tendency.Line.Last(0));

I have in the log : 2 between 18:00 and 19:30, but -2 at 17:00 and 17:30 which are incorrect, and I don't know why.

Please could you help me ?

Again thanks.

Nota : UTC+1 for both chart and Log

TH
thierry · 6 years ago

Hi,

I am trying to get output to use them in a bot but I fail.

I suppose we have to do something like this, and to call them with heikenashismoothed.haClose.last(1), but does not work at the end:

[Output("haClose")]
public IndicatorDataSeries haClose { get; set; }
 [Output("haOpen")]
 public IndicatorDataSeries haOpen { get; set; }

 

Thanks

TH
thierry · 6 years ago

Does not work well at last. It seems that it has some result default when the current Renko bar returns to the last Renko bar close. This seems to lead visually by a horizontal jump backwards on the last Renko bar. Moreover if you use it in a bot, there are very quick positions (buy & sell or the contrary) likely due to this jump.

At last if you used it with a custom indicator as the following: https://ctrader.com/algos/indicators/show/1608, there will be a failure, again probabaly due to th backwards.

Thanks