PureBytes Links
Trading Reference Links
|
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/
|