PureBytes Links
Trading Reference Links
|
At 12:54 PM 7/28/2004, Grover wrote:
>I want to paint the 50th bar back. The following code paints the 50th
>bar and also all bars preceding the 50th. How do I get it to only
>paint the 50th bar?
Try this:
InPut: PastBar(50);
If LastBarOnChart Then Begin
Plot1[PastBar](High[PastBar],"PBHigh");
Plot2[PastBar](Low[PastBar],"PBLow");
End;
Bob Fulks
|