PureBytes Links
Trading Reference Links
|
Bill, thanks this was very helpful.
How is it possible to replace the 50 in the last line with a single
value (but not an array)? I want to be able to find a high value and
then plot that value forward for 50 bars. I can't figure out how to
get one value (such as a particular day's high) from an array and
use it repeatedly in a single plot statement for 50 bars.
Any ideas? Thank you!
Andrew
(fog)
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <fimdot@xxx> wrote:
>
> Here is one approach. Modify for your conditions.
>
> plot(c, "", color);
> range = iif(barindex() > barcount - 100 and barindex() < barcount -
50, 1, 0);
> plot(iif(range, 50, null), "", color);
>
> Bill
>
> ----- Original Message -----
> From: "foginthehills" <andrewdelin@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Monday, October 22, 2007 10:15 AM
> Subject: [amibroker] How do I draw a horizontal line at a given
price without using an array?
>
>
> > Hi folks
> >
> > Sorry if this is too simple a question. How do I draw/plot a
> > *horizontal* line for 50 bars long, at a specific price, without
> > using an array?
> >
> > I want to plot a variable number of these flat lines at
different
> > support levels on the chart. I can't find a way to "just draw a
> > horizontal line at $35 for 50 bars", etc. I don't think using
arrays
> > is suitable because I want to draw a lot of these flat lines?
> >
> > I am thinking of code that starts like this:
> >
> > // work weekly
> > timeframeset(inweekly);
> >
> > // if week high exceeds last week's 3 month high,
> > // make a flat line here
> > if (H > Ref(HHV(H, 13), -1))
> > {
> > // plot a horizontal line at price $H for 50 bars
> > }
> >
> > Any ideas? Am I approaching this the wrong way?
> >
> > thanks :)
> >
> > -fog
> >
> >
> >
> >
> > Please note that this group is for discussion between users only.
> >
> > To get support from AmiBroker please send an e-mail directly to
> > SUPPORT {at} amibroker.com
> >
> > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
> > http://www.amibroker.com/devlog/
> >
> > For other support material please check also:
> > http://www.amibroker.com/support.html
> >
> > Yahoo! Groups Links
> >
> >
> >
> >
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG Free Edition.
> > Version: 7.5.488 / Virus Database: 269.15.5/1084 - Release Date:
10/21/2007 3:09 PM
> >
> >
>
Please note that this group is for discussion between users only.
To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|