It can be seen easy way to determine next day value with the formula Ref(LLV(C,10),+1),but at the exploration results;” formula Ref(LLV(C,10),+1)” ,produced "N/A" value
I’ve used some different formula to determine the the next close(one next day close value) of LLV(C,10) like;
1. BarsSince(LLV(C,10)) = 1;
2. ValueWhen(1,C,LLV(C,10));
3. ValueWhen(1,LLV(C,10),DayOfWeek()+1)
4. If(LLV(C,10),If(DayOfWeek()>=0,C,0),0 )
5. a1:=If(LLV(C,10), DayOfWeek()+1, 0 ); ValueWhen(1,a1,C);
6. If(If(LLV(C,10), DayOfWeek()+1,0 ),C,0)
But, in vain………….
Please help me…