is there a stochastic available that changes the color of the lines depending upon the direction?
thank you,
angela
thank you,
angela
if(vStoch.getValue(StochStudy.FAST)>=vStoch.getValue(StochStudy.FAST,-1)){
setBarFgColor(Color.lime,0)
}
if(vStoch.getValue(StochStudy.FAST)<vStoch.getValue(StochStudy.FAST,-1)){
setBarFgColor(Color.red,0)
}
Comment