Originally posted by tdefarlo
That's what I figured was happening. So the question is, how does one get the value of an indicator (in this case stochastic) which requires both daily data and the current price? For example, FastK(5) of data1 would return the stochastic value based on the last 5 intraday bars, which I do not want, while FastK(5) of data2 would only return the stochastic value based on 5 days up to yesterday's close. I am sure there is a way to do this - I just must misunderstand something...
Yes you can do it but it will require outside program help (TS doesn't natively do this). Use a global variables package to do this (not an easy road). But I have to ask if it will be worth it to go to all the trouble for a study based off of stochastics?
Another approach that may / may not work might be to cleverly take the stochastic formula apart. Feed in the current value from data1 (intraday) into the formula after getting the past value off from data2 (daily).
Good Luck!
