Any ideas
The basic idea of the code is something like this
private ArrayList swinghighs = new ArrayList();
if (High[0] > SwingHigh)
swinghighs.Insert(0, High[0];
bool swing_broken = true;
....
if (Low[0] < swinghighs[0] && swing_broken == true)
Print ( High Retested)
PS - Does anyone know how I can store more information in the ArrayList, for example the time the high was made, or the SMA(5) at the time? Do i need to insert that information into an array and then insert the array into the list? I would think there is an easier way.
Thank you kindly programming masters of the universe ;-)

Comment