Formula: |
Coding:
{Variables}
x1:=Input("[1]Open [2]High [3]Low [4]Close [5]Vol",1,5,4);
xx:=Input("Nth Periods",1,365,1);
{Data Array}
x1:=If(x1=1,O,If(x1=2,H,If(x1=3,L,If(x1=4,C,If(x1=5,V,C)))));
{Logic}
x:=If(DayOfMonth() <= Ref(DayOfMonth() ,-1),1,0);
{Out put}
(ValueWhen(xx,x>0,Ref(x1,-1))) |
|