Could someone steer me in the right direction as to how to plot the highest range of the past n days in any current time frame chart. Thanks for any suggestions!
Steve
Steve
function myRange(){
return high(0)-low(0);
}
//…
myHighestRange = highest(n, efsInternal(“myRange”))
//…
Comment