PureBytes Links
Trading Reference Links
|
Dimitris,
Dumb question, but if you are getting a buy signal on the N100 wouldn't you want to run a scan of the Nasdaq comp or the stocks in the Nasdaq 100 Index? If my memory is correct you run a scan on all the stocks in the database for this system. Wouldn't you get run the risk of getting conflicting signals?
JasonDimitris Tsokakis <TSOKAKIS@xxxxxxxxx> wrote:
A new "buy" signal was added on yesterdays close.
Dimitris Tsokakis
----- Original Message -----
From: Dimitris Tsokakis
To: amibroker@xxxxxxxxxxxxxxx
Sent: Thursday, February 26, 2004 10:09 AM
Subject: 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 TsokakisSend BUG REPORTS to bugs@xxxxxxxxxxxxxSend 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
Do you Yahoo!?
Yahoo! Search - Find what you’re looking for faster.
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 the Yahoo! Terms of Service.
|