PureBytes Links
Trading Reference Links
|
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 -----
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 > > <*> 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/ > > > > -- > 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
__,_._,___
|