Monthly High and Low

#1
Plotted the flwg : what appears was previous month's Hi & Lo. Need to plot current month Hi & Lo. Can Carbonmimetic or any other members help to tweak flwg formula? Thanks.

Originally Posted by carbonmimetic
MONTHLY LOW

Dw:=If(DayOfMonth()<=Ref(DayOfMonth(),-1),1,0);
Wl1:=If(Dw=1,
Ref(LowestSince(1,Dw=1,L),-1),0);
Wl:=ValueWhen(1,Wl1>0,Wl1);
Wl;

MONTHLY HIGH

Dw:=If( DayOfMonth()<=Ref(DayOfMonth(),-1),1,0);
Wh1:=If(Dw=1,
Ref(HighestSince(1,Dw=1,H),-1),
0);
Wh:=ValueWhen(1,Wh1>0,Wh1);
Wh;


Carbonmimetic from ITALY
 

Similar threads