Happy news for a large number of traders and programmers! The long-awaited support for using indicators from other timeframes in the same indicator (aka MTF indicators) will finally be available soon in programming (in a future update to ProRealTime version 11). I am currently testing different combinations to study all that is possible and so far everything works as well as what we could have with MTF for automatic trading strategies via ProOrder / ProBacktest . The programming method remains the same as that already used for ProScreener or ProOrder. That is to say that we declare our TIMEFRAME, then we code below in an ordinary way. So you can combine as much timeframe as you want and do everything you’ve dreamed of so far (for those who dream of programming of course 😆 ) Simple example: timeframe(1 hour,updateonclose) up = BollingerUp[20](close) dn = BollingerDown[20](close) timeframe(15 minutes) tenkan = TenkanSen[9,26,52] return up,dn, tenkan coloured(0,150,200) style(line,2) In this simple example, we apply a 1-hour Bollinger Bands (updated once at each 1-hour bar close) and a 15-minutes TenkanSen (update once at each current timeframe bar closure). — As you can see, this leaves a lot of room for the imagination to program a lot of new things! Combined with the arrays, we can now say that a certain number of limits have been overcome with regard to programming under ProRealTime! I do not know yet when this functionality will be available to the public, but I will try to keep you informed. In the meantime if you have any questions or questions, I will try to answer them as soon as possible. I will probably post other more or less complex examples over time! 😉