Replies

contact.bitq
26 Apr 2020, 10:04

Those issues only occur on Visual Backtesting mode.

 


@contact.bitq

contact.bitq
13 Apr 2020, 09:12

RE:

PanagiotisCharalampous said:

Hi contact.bitq,

You need to explain more clearly what do you mean when you say they do not work. What did you expect to happen and what happens instead? Also please provide the complete indicator code.

Best Regards,

Panagiotis 

Join us on Telegram

 

Thanks, the minimal code above is enough to understand the case.

But I will create a minimal reproduction complete code and post it here ASAP :)


@contact.bitq

contact.bitq
11 Apr 2020, 13:29

I faced this issue today, here solution
I pass RunningMode of cBot as indicator's parameter.
and then in the indicator:
if (cBotRunningMode != RunningMode.Optimization) {
  // do chart operation here
}

 


@contact.bitq