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

[amibroker] Additional indicator questions


  • To: "AmiBroker Mailing List" <amibroker@xxxxxxxxxxxxxxx>
  • Subject: [amibroker] Additional indicator questions
  • From: "Tomasz Janeczko" <tj@xxxx>
  • Date: 13 May 2001 06:05:37 -0000

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