Greetings,
I would like to return an array containing several different kinds of indicators to be charted by my EFS script.
The problem is that between them, they are on several different scales.
Is there a way that some of them could be charted on the price study, and others in a lower panel?
For example, if I was returning an array of two elements in my script:
// plot the first element on the price bar
setPriceStudy(true, 0);
// plot the second element on a lower bar
setPriceStudy(false, 1);
Obviously though, this doesn't work. Is there any way to do this without having to open multiple strategies and manually place them (as it isn't really an option)?
Thanks in advance,
Joshua C. Bergeron
I would like to return an array containing several different kinds of indicators to be charted by my EFS script.
The problem is that between them, they are on several different scales.
Is there a way that some of them could be charted on the price study, and others in a lower panel?
For example, if I was returning an array of two elements in my script:
// plot the first element on the price bar
setPriceStudy(true, 0);
// plot the second element on a lower bar
setPriceStudy(false, 1);
Obviously though, this doesn't work. Is there any way to do this without having to open multiple strategies and manually place them (as it isn't really an option)?
Thanks in advance,
Joshua C. Bergeron
Comment