PureBytes Links
Trading Reference Links
|
I think it would be easier to just write
RSI(period)
then you can vary the time of the RSI
period = 14;
Buy = Cross( RSI(period), 30 );
Sell = Cross( 70, RSI(period) );
Cheers,
Graham
http://groups.msn.com/ASXShareTrading
http://groups.msn.com/FMSAustralia
-----Original Message-----
From: jnk1997 [mailto:jnk1997@xxxxxxxxx]
Sent: Monday, 5 May 2003 9:15 PM
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: EOD Swing Trading Methods Survey-mrdavis9
I copied the built in formula, created a new indicator, pasted the
formula along with the guru comentary and removed everything that was
shown above this..
range = Prefs( 10 );
_N( ranstr = "("+WriteVal( range, 1.0 )+")" );
Plot( vrsi = RSI(range), "RSI" + ranstr, -8 );
Buy = Cross( vrsi, 30 );
Sell = Cross( 70, vrsi );
"The current value for the RSI" + ranstr + " is " + WriteVal( vrsi );
Then I selected custom, range 0 t0 100 and Grid line 50.
It works.
Jim
--- In amibroker@xxxxxxxxxxxxxxx, "mrdavis9" <mrdavis9@xxxx> wrote:
> To jnk1977, I would appreciate hearing how you got the built in
formula to display the RSI 50-line/midline. Ron D
> ----- Original Message -----
> From: jnk1997
> To: amibroker@xxxxxxxxxxxxxxx
> Sent: Sunday, May 04, 2003 12:32 PM
> Subject: [amibroker] Re: EOD Swing Trading Methods Survey-Bill
>
>
> OK figured it out...no more problem.
>
>
> --- In amibroker@xxxxxxxxxxxxxxx, "jnk1997" <jnk1997@xxxx> wrote:
> > Bill, Thanks for your comments,
> > Do you have the AFL formula for the "20-day RSI 50-line/midline
> > crossover"? I can't get the built in formula to display the mid
> > line "50" only shows 30 and 70.
> >
> >
> >
> >
> > --- In amibroker@xxxxxxxxxxxxxxx, "billpritjr"
<billpritjr@xxxx>
> > wrote:
> > > I use 3 indicators, all simple and as old as TA itself, but
still
> > > effective.
> > >
> > > 1) 20-day SMA crossover by price
> > > 2) 20-day RSI 50-line/midline crossover
> > > 3) OBV behavior in agreement with 1,2 above
> > >
> > > when the above 3 are in-sync, Bullish, or Bearish (I dont
care),
> I
> > > will enter a position based on those signals.
> > >
> > > I tend to lean towards stocks with under 300 Million shares
> > > outstanding, and with 500K ave volume or more.
> > >
> > > If I get multiple hits, I will screen for those which belong
to
> the
> > > best industry group/sector at the present time. If I get 3
short
> > > candidates, I will look at the one in the worst sector
> > >
> > > hope that helps
> > >
> > > BILL
>
>
> Yahoo! Groups Sponsor
>
>
>
>
>
> 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
>
> Your use of Yahoo! Groups is subject to the Yahoo! Terms of
Service.
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/
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/KXUxcA/fNtFAA/uetFAA/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/
|