[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[amibroker] Re: Plotting shapes over a peak



PureBytes Links

Trading Reference Links

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
> > 
> >
>