PureBytes Links
Trading Reference Links
|
You did not read my suggestion! You have no plot to reference. You need at
least one since plotShapes is referenced to some other plot.
Peaks = IIf(Peak(H, 2) == H, 1, 0);
Plot(C,Name(),colorBlack,styleCandle);
PlotShapes(shapeDownArrow * Peaks , colorRed , 0, Graph0, -10);
--
Terry
-----Original Message-----
From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On Behalf
Of orionsturtle
Sent: Monday, June 19, 2006 12:19 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: Plotting shapes over a peak
I tried your suggestion. This is what I used but no go...
Peaks = IIf(Peak(H, 2) == H, 1, 0);
PlotShapes(shapeDownArrow * Peaks , colorRed , 0, H, -10);
If you see anything else please let me know. I'll keep plugging
away. I'll figure this code out sooner or later. Thank you for your
response!
OT
--- In amibroker@xxxxxxxxxxxxxxx, "wavemechanic" <fimdot@xxx> wrote:
>
> Use the following for Peaks:
>
> Peaks = IIF(Peak(H, 2) == H, 1, 0);
>
> ----- Original Message -----
> From: "orionsturtle" <orionsturtle@xxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Friday, June 16, 2006 3:14 PM
> Subject: [amibroker] Plotting shapes over a peak
>
>
> >
> > I am trying to just see visually what the peak function does.
> >
> > I want to plot a shape over a given peak. i am trying this code
but no
> > go... any help???
> >
> > Peaks = Peak(H,2);
> > PlotShapes(shapeDownArrow * Peaks , colorRed , 0, H, -10);
> >
> > Thanks!!!
> >
> > OT
> >
> >
> >
> >
> >
> >
> >
> > 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
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > --
> > No virus found in this incoming message.
> > Checked by AVG Free Edition.
> > Version: 7.1.394 / Virus Database: 268.9.0/366 - Release Date:
06/15/06
> >
> >
>
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
http://groups.yahoo.com/group/amibroker/
amibroker-unsubscribe@xxxxxxxxxxxxxxx
http://docs.yahoo.com/info/terms/
|