Actually my post was about the different EMA values regarding timeframes (not an oblligation though) :Lenovo wrote: Thu Apr 16, 2026 12:05 am Let's just say I'm not exactly a computer whiz, but if you want to, you can do it yourself. Just save the average with the value you need for as long as you need it. Sometimes the basics slip your mind—here's an example attached. I hope I understood what you wanted correctly.
So, save the value 192 for 1 minute on the 4M, 48, and 12 for the 15M.
EMA 12 on the M15 timeframe
EMA 48 on the M4 timeframe
EMA 192 on the M1 timeframe
by changing value in code :
input string EMA16Settings = "<<<<==== EMA 16 Settings ====>>>>";
input bool showEMA16Line = true;
int EMA16Period = 12;
input color EMA16ColorDown = clrRed;
input color EMA16ColorUp = clrLime;
input int EMA16Width = 3;