I feel like I've spent the past few hours on what is probably an easy fix. I'm trying to create a running total (cumulative) of (Close[0] - Close[1]).
So if...
(Close[0] - Close[1]) = 0.1
...new bar...
(Close[0] - Close[1]) (+ 0.1) = 0.6
...new bar...
(Close[0] - Close[1]) (+ 0.6) = 0.9
Thanks for any help,
James

Comment