PureBytes Links
Trading Reference Links
|
At 1:34 PM -0400 10/14/98, Nixon(MLS) wrote:
>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]
>
>Could someone tell me what I am doing wrong?
You can simplify the formula a little and use brackets after the Plot1
statement to plot back in time.
I would think you could use the following:
Plot1[1](((Open[1]+Close[1])*0.50),"showme");
Bob Fulks
|