PureBytes Links
Trading Reference Links
|
Ron,
Oh as I wrote to John, I've created a virtual link between my
WatchLists and my LayOut.
So first in one tab I select the WL I want, then I switch to other
Tab and select LO I want. It works nicely.
Some details ===>
I have a WL for long-double. They are very volatile funds by PRO.
So I have a layout that shows me NAZ long-double, DJIA long-double,
RUT long-double with indicators suitable for each fund in 3 seperate
windows.
Similarly I have 'Commitment-Of-Traders' WL tied to another pair of
layouts. There are 4 windows in each showing commercial/non-
commercial monies for S&P 500 and NAZ. I switch between them.
Basically I guess I use the feature as was intended. Just that I
never knew that such a feature existed !
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
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|