I want an indicator that shows the H-L range of each bar that I can also colorize up vs down days. Modifying an "Up/Down Volume" indicator I came up with this:
Up:=If(C>Ref(C,-1),(H-L),0); dn:=If(C<Ref(C,-1),(H-L),0); up;Dn Does that look right? Thanks!
