I find that using MTF with updateonclose makes for extremely slow back testing/optimizations.
Will I get the same result if I back test without updateonclose, then add it later?
No … updateonclose means that the candle needs to finish before any value can be read / used etc.
Without updateonclose then values can be read / used at any stage during the cycle of a candle.
So very different results can be seen?
Give me strength. This is gonna take months…
thanks, I needed that. 😟
ALL timeframes are read when the default TF (the smallest one) closes its bar.
With UpdateOnClose values and variables are updated ONLY when that candle closes, otherwise anytime the default candle closes.
OK, thanks Roberto. I think I can live without it in this case.