PureBytes Links
Trading Reference Links
|
Ron,
There are not many details besides what I posted.
I have established a virtual link between WatchLists and LayOuts.
I have WL for 'long-doubles' which contains the PRO long-double
funds, and I have corresponding LO for them.
I have WL for 'commmitment-of-traders' that contain 8 securities and
I have 2 pairs of LOs for them. (I had posted a while back about
this.)
I have WL that caters to 'Breadth' and I have LO for that as well.
... And so on.
Perhaps this is exactly what was the intended usage of the layouts,
therefore I guess there are hardly any wonderful details that go with
it. *smile*
Regards,
- Salil V Gangal
--- In amibroker@xxxxxxxxxxxxxxx, "mrdavis9" <mrdavis9@xxxx> wrote:
> I am also interested in how Salil uses "Layout feature" and it
would really help if Salil could include a wonderful detailed
explanation similar to what Graham did the other day regarding Sum()
and cum(). Graham ended his explanation with Hope this helps.
Thanks Graham, it helped a lot.Ron D
> ===========================================================
> Sum adds up the last "n" number of bars. It sums whatever you put
into the
> first part of the sum formula.
> Cum(1) adds 1 to the previous value of Cum, so the first bar is 1
and it
> just keeps adding one to the last bar value of cum(1). You can use
Cum to
> add anything, like how many times you get rising days in the entire
chart
> Rise = C>O; //this gives results of 0 or 1
> TotalRise = Cum(Rise);
>
> You could limit this as well to time periods, or any other condition
> Example would bne for total rise days since 1995
> RecentRise = C>O and Year()>=1995; //this gives results of 0 or 1
> TotalRise = Cum(RecentRise);
>
> If you wanted to know how many rising days in the last 12 bars you
would use
> LastRises = Sum(Rise,12);
>
> Hope this helps
>
> Cheers,
> Graham
>
> ==============================================================
> ----- Original Message -----
> From: john gibb
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, March 25, 2004 10:57 AM
> Subject: Re: [amibroker] Layouts -- A very useful feature
>
>
> Hi Salil,
>
> I would be interested to know how you use this feature.
>
> I have only used it briefly, but wonder if it might help me
review and
> organize the 100's of custom-indicator scripts i have collected.
>
> thanks
>
> -john
> ----- Original Message -----
> From: "Salil V Gangal" <salil_gangal@xxxx>
> To: <amibroker@xxxxxxxxxxxxxxx>
> Sent: Thursday, March 25, 2004 6:34 AM
> Subject: [amibroker] Layouts -- A very useful feature
>
>
> Friends,
>
> I 'discovered' Layout feature of AmiBroker just a few days ago.
> Since then I've used it often. I find it very useful.
>
> Regards,
> - Salil V Gangal
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
> http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
>
>
>
> Send BUG REPORTS to bugs@xxxx
> Send SUGGESTIONS to suggest@xxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
> Yahoo! Groups Links
>
>
>
>
>
>
> ---
> Outgoing mail is certified Virus Free.
> Checked by AVG anti-virus system (http://www.grisoft.com).
> Version: 6.0.638 / Virus Database: 409 - Release Date: 3/25/2004
Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.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/
|