PureBytes Links
Trading Reference Links
|
Thanks Roy.
Another thing I'm trying to put together is this
(building on the earlier message):
Buy if:
Today's 5 day RSI > than yesterday's 5 day RSI; and
today's close is below the close 5 days ago; and
today's close <= to the average of the last 5 day's
closes
Sell if:
Today's close is higher than the average of the last 5
days' closes;
This is what I came up with:
Buy:
RSI(C,5) > Ref(RSI(C,5),-1);
C < Ref(C, -5);
C <= Mov(C,5,S);
Sell:
C > Mov(C,5,S);
Icreated anew "expert adviser", place the buy criteria
in under bullish and sell criteria under bearish.
Can you help with the coding? I also would like to see
up & down arrows on the chart.
Thank you so much for your help.
Phiba
--- Roy Larsen <rlarsen@xxxxxxxxxxxxxx> wrote:
> Hi Phiba
>
>
> Try this
>
> RSI(C,5) > Ref(RSI(C,5),-1);
>
>
> Regards
>
> Roy
> www.metastocktips.co.nz
>
>
> ----- Original Message -----
> From: phiba3
> To: equismetastock@xxxxxxxxxxxxxxx
> Sent: Saturday, December 03, 2005 11:28 AM
> Subject: [EquisMetaStock Group] RSI coding
>
>
>
> Can anyone help me with the coding of the following:
> Today's 5 day RSI is greater than yesterday's 5 day
> RSI
> I tried the following but got nothing:
> RSI(C,5) > RSI(C,5)[1];
>
> Please help
>
> Phiba
>
>
>
>
>
>
>
>
>
>
> SPONSORED LINKS Business finance course Business
> finance online course Business finance class
> Small business finance Business finance
> schools Business finance small software
>
>
>
--------------------------------------------------------------------------------
> YAHOO! GROUPS LINKS
>
> a.. Visit your group "equismetastock" on the web.
>
> b.. To unsubscribe from this group, send an email
> to:
> equismetastock-unsubscribe@xxxxxxxxxxxxxxx
>
> c.. Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service.
>
>
>
--------------------------------------------------------------------------------
>
>
__________________________________________
Yahoo! DSL – Something to write home about.
Just $16.99/mo. or less.
dsl.yahoo.com
------------------------ Yahoo! Groups Sponsor --------------------~-->
Try Online Currency Trading with GFT. Free 50K Demo. Trade
24 Hours. Commission-Free.
http://us.click.yahoo.com/RvFikB/9M2KAA/U1CZAA/BefplB/TM
--------------------------------------------------------------------~->
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|