PureBytes Links
Trading Reference Links
|
the H tells where to place the arrow, in this case high of the bar,
and then looks at the offset as to how far from the Y position
PlotShapes( shape, color, layer = 0, yposition = graph0, offset = -12 );
as you can see from my response before you do not need to include the
descriptors like offset = -12 , just use -12
check the References in the help file for examples
if you want to put the shape ontop an indicator chart just replace the
H with the indicator
eg
PlotShapes(shapeDownArrow * (datenum()==1050308), colorRed, 0, EMA(C,10), -12);
On Thu, 10 Mar 2005 22:56:36 -0000, Lesmond V <ebsn247@xxxxxxxx> wrote:
>
>
> Great, thanks a lot.
>
> What is "H" (or "L") in the code in place of "graph0". Help file doesn't seem to be updated.
>
>
> > try this
>
> > PlotShapes(shapeDownArrow * (datenum()==1050308), colorRed, 0, H, -12);
> >
>
> >
> > On Thu, 10 Mar 2005 22:35:29 -0000, Lesmond V <ebsn247@xxxx> wrote:
> > >
> > >
> > > Let's say I want to plot a "down arrow" just above the bar on 2005-Mar-08. Seems a no brainer but I'm completely at a loss with that one.
> > >
> > > PlotShapes(shapeDownArrow, colorRed, 0, graph=0, Offset=12);
> > >
> > > Where to put a code for the date?
>
>
> 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 other support material please check also:
> http://www.amibroker.com/support.html
>
> Yahoo! Groups Links
>
>
>
>
>
--
Cheers
Graham
http://e-wire.net.au/~eb_kavan/
------------------------ Yahoo! Groups Sponsor --------------------~-->
Has someone you know been affected by illness or disease?
Network for Good is THE place to support health awareness efforts!
http://us.click.yahoo.com/Rcy2bD/UOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|