Is it possible to have a subwindow on an EA?

 

I'm trying to put an stochastic oscilator on my EA.

For what I have investigated it's not possible.

Any recommendations on this topic?

 
Osmar Sandoval Espinosa:

I'm trying to put an stochastic oscilator on my EA.

For what I have investigated it's not possible.

Any recommendations on this topic?

You need to use an indicator for that purpose.
 
The EA has no eyes. It doesn't need the stochastic on the chart. Just read the values you need.
 
Osmar Sandoval Espinosa:

I'm trying to put an stochastic oscilator on my EA.

For what I have investigated it's not possible.

Any recommendations on this topic?

it's possible to  do  that  ,  Only thing to  consider is do  you  have to  do  that.   

method is to  make the ea apply  the indicators essentially .  

 
Osmar Sandoval Espinosa:
I'm trying to put an stochastic oscilator on my EA.

I'm not sure exactly what you mean by "on [your] EA." Perhaps it's a loose translation of en/in/on.

If you're interested in anything that works, check out:

iStochastic - Technical Indicators - MQL5 Reference, and...

ChartIndicatorAdd - Chart Operations - MQL5 Reference (pay attention to the sub_window parameter here).

The former calls data from the built-in Stochastic Oscillator calculation (requires a handle and buffers), and the latter merely attaches the Stochastic Oscillator indicator to a chart (using the handle).
 
Ryan L Johnson #:

I'm not sure exactly what you mean by "on [your] EA." Perhaps it's a loose translation of en/in/on.

If you're interested in anything that works, check out:

iStochastic - Technical Indicators - MQL5 Reference, and...

ChartIndicatorAdd - Chart Operations - MQL5 Reference (pay attention to the sub_window parameter here).

The former calls data from the built-in Stochastic Oscillator calculation (requires a handle and buffers), and the latter merely attaches the Stochastic Oscillator indicator to a chart (using the handle).

I'm trying to add an indicator to the graph that my EA is on.


This on the code of the EA, so it displays the indicator and also do the EA logic. 


As far I can see is possible by the second link you provided. :)