PureBytes Links
Trading Reference Links
|
In a message dated 98-10-14 13:33:09 EDT, mbjp57@xxxxxxxxxxxxxx writes:
> I want to plot a showme in the middle of the body of the previous (i.e
> bar[1]) Candle stick up bar and the code I have is
>
> Plot1(Open[1]+((Close[1]-Open[1]*0.50),"showme");
>
> but this still plots in bar[0]
>
Try this:
Plot1[1](Open[1]+((Close[1]-Open[1]*0.50),"showme");
|