PureBytes Links
Trading Reference Links
|
Thanks alex, worked great!
-----Original Message-----
From: unicorn@xxxxxxxxx [mailto:unicorn@xxxxxxxxx] On Behalf Of Alex
Matulich
Sent: Wednesday, February 25, 2004 9:05 PM
To: omega-list@xxxxxxxxxx
Subject: Re: Plotting a dot
Ned:
>Can anyone tell me an easy way to plot a dot below the bar instead of
>painting the bar for the time specified? Code for painting the bar is
>below.
>
>Inputs: PaintTime(0300);
>
>If Time = PaintTime Then Begin
> PlotPaintBar(Low,high, "Time");
>End
>Else Begin
> NoPlot(1);
> NoPlot(2);
>End;
You can use a ShowMe or an indicator.
If time = painttime then plot1(low-avgtruerange(10));
That's it. Make sure you change the plot style to a dot.
-Alex
|