First of all --- thank you SO much for your support --
Following your course (and I have not had time to study it completely yet) I was able to create an indicator I needed that shows the pivot and another line --
It compiled with no errors and draws 2 lines out of 4 -- well thats a start
But I actually want 2 more lines but they are not drawing --
Can you tell me why ?
P=(LastHigh+LastLow+Close[i+1])/3;
T =(LastHigh-LastLow)/2+LastLow+15.0;
C=(LastHigh-LastLow)/2+LastLow;
P and C are drawing -- T is not.
I want T line to be 15 pivots above C
Thanks for your help --