I’ve been using the following to include DEMA and TEMA in the range of moving averages to be compared when optimizing ‘t’ (0-10) ma = average[p,t](typicalprice) if t = 9 then ma = DEMA[p](typicalprice) elsif t = 10 then ma = TEMA[p](typicalprice) endif cb1 = ma > ma[1] This works well enough – my question is, are there others that can be included in this way? I know there are dozens of moving average types but will any of them work with this syntax without writing the whole formula?