PureBytes Links
Trading Reference Links
|
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: "Tomasz Janeczko" <tjaneczk@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, May 10, 2001 9:04 PM
Subject: Re: [amibroker] Additional indicator questions
Hello,
You can only add these using custom indicator builder.
//volume with 50 EMA
graph2 = volume;
graph1 = ema( volume, 50 );
------------------------------
// 90-day stdev envelope
graph0 = close;
graph0style = 64;
graph0color = 2;
graph1 = bbandtop( close, 90, 2 );
graph2 = bbandbot( close, 90, 2 );
graph1style = graph2style = 1;
Best regards,
Tomasz Janeczko
===============
AmiBroker - the comprehensive share manager.
http://www.amibroker.com
----- Original Message -----
From: <brett_f1@xxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Thursday, May 10, 2001 5:11 AM
Subject: [amibroker] Additional indicator questions
> Can I add an envelope channel based on a 90EMA of price to the main
> chart? And, can I add a 50EMA of volume too?
>
> I look forward to providing my own feedback to group soon. I plan on
> developing many AFL's to share with the group.
>
> Brett
>
>
>
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>
|