PureBytes Links
Trading Reference Links
|
Herbert,
Everything is explained in the "technical part".
Note that the study is for the N100 database.
Dimitris Tsokakis
--- In amibroker@xxxxxxxxxxxxxxx, Herbert Elstein <herty@xxxx> wrote:
> Hi Dimitris,
>
> Would you mind taking some time and trouble to explain (or re-
explain) what you are showing. How do you create a "~OUT1" comp.
ticker? what does the lower chart c.f. the upper chart show? and are
these all the required codes?
>
> I wish to try this with our own index.
>
> It will be appreciated.
>
> Herbert
> ----- Original Message -----
> From: Dimitris Tsokakis
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Thursday, February 26, 2004 10:09 AM
> Subject: [amibroker] Fw: How about
>
>
> Another accurate Buy signal was added on Feb24.
> Dimitris Tsokakis
> ----- Original Message -----
> From: Dimitris Tsokakis
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Saturday, February 07, 2004 3:01 PM
> Subject: Fw: How about
>
>
> The technical part:
> Create first the "~OUT1" composite ticker for the N100 market.
> KUP and KDOWN are the Keltner Resistance/Support, the condition
OUT1 occurs when a stock closes below the Keltner support
> for the first time.
> The "~OUT1" counts how many tickers did it.
> /*OUT*/
> KUP=EMA((H+L+C)/3,10)+EMA(H-L,10);
> KDOWN=EMA((H+L+C)/3,10)-EMA(H-L,10);
> OUT1=C<KDOWN AND Ref(C,-1)>Ref(KDOWN,-1);
> AddToComposite(OUT1,"~OUT1","V");
> AddToComposite(1,"~COUNT","V");
> Buy=0;
>
> After creating the composite ticker, paste in IB the
>
> X1=Foreign("~out1","V");
> Filter=Ref(x1,-1)>20 AND x1<10;
> SetForeign("^NDX");
> Plot(C,"",1,64);
> PlotShapes(shapeUpArrow*Filter,colorBrightGreen);
> GraphXSpace=5;
>
> It will plot a green arrow when the "~OUT1" changes dramatically
from >20 to <10.
> The signals are quite reliable for the recent bullish period, the
delays are not bad and may give hints for the re-entry points.
>
> ----- Original Message -----
> From: Dimitris Tsokakis
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Friday, February 06, 2004 10:33 AM
> Subject: How about
>
>
> those Buy signals [for ^NDX market]?
> Dimitris Tsokakis
>
>
> 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/
|