PureBytes Links
Trading Reference Links
|
| -----Original Message-----
| From: Orphelin@xxxxxxx [mailto:Orphelin@xxxxxxx]
| Sent: Wednesday, September 02, 1998 5:33 PM
| To: CunCom@xxxxxxxxxxxxxx; Omega-list@xxxxxxxxxx
| Subject: Re : Plotting errors?
|
| <SNIP>
| <<
| Could this be used to refresh paintbars that are updated every tick
| yet continue to paint even though the criteria for painting is no
| longer true?
| >>
|
| Yes, of course.
| You need to include 2 plots statements within the for....
| loop in this case
|
| var:k(0);
| Value1= your indicator- High value;
| Value2= your indicator-Low value;
|
| for k=10 downto 0 begin
| plot1[k](value1[k],"myStuff");
| plot2[k](value2[k],"myStuff");
| end;
|
| Sincerely,
|
| Pierre Orphelin
| www.sirtrade.com
Pierre,
Is there a reason your example uses "k=10 downto 0" instead of "k=1 downto
0"?
What is the value of going more than the previous bar back?
And does this really correct a paint bar that was painted during Update
Every Tick, but then the condition became invalid by the completion of a
bar?
Thank you,
Neil
|