[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Plotting a dot



PureBytes Links

Trading Reference Links

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