Quote Originally Posted by mscott View Post
Robert I use eSignal. I modified an eSignal Formula script to divide the ATR formula script result by the closing value of the index and multiplying the result by 100. This would probably be easy to do even by a novice in any platform that gives you a programing access like Trade Station and Think or Swim and many more.
Below is the entire eSignal script for ATR% you can see that the program part itself is a single line of code. The rest of the script is set up stuff like color of line and naming the script, etc.

function preMain() {

setPriceStudy(false);
setStudyTitle("%ATR");
setCursorLabelName("ATR", 0);
setDefaultBarFgColor(Color.blue, 0);
setPlotType(PLOTTYPE_LINE,0);
setDefaultBarThickness(1,0);
}

function main() {


return 100*atr(14)/close(0);
}
Hi Mike,

Do you have the .ts file for your ATR% modification or could you show me how to program in TOS?

Stephen

stephen.gerritz@gerritz.com