Hello z11,
No, getValueAbsolute will not help. Coding multiple time frame studies in EFS is a complicated matter currently. The simplest solution is what I gave you in my previous post.
With getValueAbsolute, the index you pass will be the absolute index for the associated symbol passed to the function. So when your study is processing bar -100 and you ask for getValueAbsolute("Close", 0, "Symbol,15") you will get the close from the 0 bar from the 15 minute chart instead of the -100 bar, which getValue() returns. Neither return is a synchronized result.
No, getValueAbsolute will not help. Coding multiple time frame studies in EFS is a complicated matter currently. The simplest solution is what I gave you in my previous post.
With getValueAbsolute, the index you pass will be the absolute index for the associated symbol passed to the function. So when your study is processing bar -100 and you ask for getValueAbsolute("Close", 0, "Symbol,15") you will get the close from the 0 bar from the 15 minute chart instead of the -100 bar, which getValue() returns. Neither return is a synchronized result.
Comment