PureBytes Links
Trading Reference Links
|
Hi DT,
First let me say thank you for all your help.
This is what I use to trade.
t1 = OscP( 3, 6 );
Cond1= Cross (t1,-.2);
cond2 = MACD()>Signal()-.5;
Buy = Cond1 AND Cond2;
Sell=Cross(0,t1);
I look at the weekly chart first,if it is bullish,
then I will look at the daily chart for a entry point..
thank you,
Dennis
--- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
wrote:
> COND1=Cross(MACD(),Signal());
> COND2=MACD()>-1 AND MACD()<0;
> CONDITION=COND1 AND COND2;
> Filter=CONDITION;
> AddColumn(MACD(),"");
> Buy=Filter;
>
> Notes:
> a. No output for ^NDX since Jan2000 !!!
> b. It gives the best "buy" for INTC, [Feb14,2003 at $15.66, now
INTC
> is at $24 !!]
> c. Do you have a similar "sell" condition ???
> Dimitris Tsokakis
> --- In amibroker@xxxxxxxxxxxxxxx, "theoldchartreader"
> <theoldchartreader@xxxx> wrote:
> > Hi,
> > I would like to use find the crossovers from -1 to 0 using cross,
> > can this be done?
> >
> > thank you,
> > dennis
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get a FREE REFINANCE QUOTE - click here!
http://us.click.yahoo.com/nHYuCC/ca0FAA/ySSFAA/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
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
|