PureBytes Links
Trading Reference Links
|
Andrew -
My first two messages on this subject yesterday didn't make it to the
list so here's the information again.
----- Original Message -----
...the Chandelier plots as it did before but on the trade day, a line
to 0 appears. The Chandelier plots before the trade day. I want the
code to plot the Chandelier but only from the trade day ie. not to the
left of the trade day but only to the right. I substituted each line
you suggested into the code but none did what I wanted.
-----
I'm not sure what Mickey means by "click on index before the line" but
if you are still having problems with the plotted 0 value at the start
of the stop line, replace
If(PdsTrade>0,TodaysStop,PdsTrade>0);
with
If(PdsTrade>0,TodaysStop,Prev);
Then delete "TodaysStop;" at the end of the code to remove the plot to
the left of the entry date.
Chuck
|