PureBytes Links
Trading Reference Links
|
<will be much appreciated by newbies>
And old-timers alike. Thanks Gary.
Dennis
--- In amibroker@xxxxxxxxxxxxxxx, "Al Venosa" <advenosa@xxxx> wrote:
> Gary:
>
> I just wanted to thank you for a very nice explanation of how to use
the Equity function and the differences among the flags. I'm sure it
will be much appreciated by newbies. You ought to be a manual writer!!
:-))
>
> Al Venosa
> ----- Original Message -----
> From: Gary A. Serkhoshian
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Wednesday, April 21, 2004 2:08 AM
> Subject: [amibroker] Equity function - what it does part two
>
>
> Dale has pointed out something I overlooked, yet is very important.
>
> Equity(1) and Equity(2) allow visualization of stops which
Equity(0) does not. You can use the code below to demonstrate, and
I've added a few pics to clarify.
>
> However, you will note that the equity line incorporates the stops
and does not change regardless of the equity flavor you use (0 - 2).
So, all that is affected is the plotting of buys, sells, shorts,
covers, and stops.
>
> If I missed anything holler, and I'm sure Tomasz will jump in if
needed.
>
> SetTradeDelays(1, 1, 1, 1);
>
> Buy = StochD() > 50;
> Sell = StochD() < 50;
>
> ApplyStop(stopTypeProfit, stopModePercent, 5.00, 1, True, 0);
>
> WhichEquity = Param("Which Equity Flavor 0 - 2?", 0, 0, 2, 1);
>
> if (WhichEquity == 1)
> {
> MyEquity = Equity(1);
> }
> if (WhichEquity == 2)
> {
> MyEquity = Equity(2);
> }
>
> if (WhichEquity == 0)
> {
> MyEquity = Equity();
> }
> GraphXSpace = 5;
> Plot(C, "Close", colorDefault, styleCandle);
> Plot(MA(C, 20), "20 bar MA", colorRed, styleLine + styleThick);
> Plot(MyEquity, "Equity", colorDefault, styleLine +
styleLeftAxisScale);
> PlotShapes(Buy * shapeUpArrow,
> Buy * colorBrightGreen, 0, Buy * L, -15);
> PlotShapes((Sell == 3) * shapeHollowDownArrow,
> (Sell == 3) * colorAqua, 0, (Sell == 3) * H,
-15);
> PlotShapes(Sell * shapeDownArrow,
> ! Sell * colorYellow, 0, Sell * H, -15);
>
>
>
---------------------------------------------------------------------------=
---
> Do you Yahoo!?
> Yahoo! Photos: High-quality 4x6 digital prints for 25¢
>
> 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
>
> a.. To visit your group on the web, go to:
> http://groups.yahoo.com/group/amibroker/
>
> b.. To unsubscribe from this group, send an email to:
> amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
>
>
>
>
>
---------------------------------------------------------------------------=
---
>
>
>
>
>
>
>
---------------------------------------------------------------------------=
---
>
>
>
>
>
>
>
---------------------------------------------------------------------------=
---
------------------------ 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/
|