Topic: Bug!? EA Studio Exported EA

Hi,

i looked with Stochastic Indikator. The Level variable have no function in exported strategies. I find the variable as input but nothing in code. Is that normal?

2 (edited by Popov 2018-03-30 20:29:11)

Re: Bug!? EA Studio Exported EA

I look at the code and in the test and cannot see a error. Please give an example what do you think is wrong.

If it is a bug, I'll fix it for minutes.

Edit:

The Level indicator is among the input parameters of the expert, however it participates in the signal formula only if the trading logic requires Level.

For example, the Level is taken into account with these logical rules:

            "Stochastic is higher than the Level line",
            "Stochastic is lower than the Level line",
            "Stochastic crosses the Level line upward",
            "Stochastic crosses the Level line downward",

The level is ignored with these rules:

            "Stochastic rises",
            "Stochastic falls",
            "Stochastic changes its direction upward",
            "Stochastic changes its direction downward",

However, if you think there is a bug, please report.