Can anyone point me to a sample of how to plot 2 values from 1 study? I am basically calculating 2 Oscillators from 1 study and need to plot them both.
SystemTrading
To do that you need to return an array eg
PHP Code:
return new Array (myValue1, myValue2, etc);
For complete examples see any one of the formulas in the Formulas subfolders that are returning more than one plot
Alex
Originally posted by SystemTrading Can anyone point me to a sample of how to plot 2 values from 1 study? I am basically calculating 2 Oscillators from 1 study and need to plot them both.
Comment