PureBytes Links
Trading Reference Links
|
Thank you Roy,
I tried your example of (1/15 Minute Frame EMA)
but it seems that is not the same number when I see the moving on 1 minute
frame than it shows me the 15 minute frame.
Some idea?
Thank you.
Oscar.
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Roy
Larsen
To: <A
href=""
title=equismetastock@xxxxxxxxxxxxxxx>equismetastock@xxxxxxxxxxxxxxx
Sent: Thursday, May 01, 2003 8:35
PM
Subject: Re: [EquisMetaStock Group]
Multiple time frame
OscarTry these for one minute and five minute bars
respectively. The variable'H1' defines the last 1 or 5 minute bar in the
15 minute timeframe. You canadjust this if I'm off by one bar or if you
need to compensate particulartrading hours. If you do not have bars
representing the minutes used for'H1' then the indicator will not display.
I don't have any 1 minute data socan't test that but 5 minute version
appears to work OK. I've added the"dynamic last bar" function but note
that the default is off. {1/15 Minute Frame
EMA}Pds:=Input("15 minute periods",1,99,10);Dlb:=Input("Dynamic last
bar",0,1,0);Pct:=2/(Pds+1);{use "1/Pds" for Wilders
Smoothing}Lb:=Dlb*(LastValue(Cum(1)-0)=Cum(1));H1:=Lb OR Minute()=14
OR Minute()=29OR Minute()=44 OR Minute()=59
;C1:=ValueWhen(1,H1,C);Ema:=If(Cum(H1>0)=1,C1,ValueWhen(1,H1,PREV)*(1-Pct)+(C1*Pct));Ema;
{5/15 Minute Frame EMA}Pds:=Input("15 minute
periods",1,99,10);Dlb:=Input("Dynamic last
bar",0,1,0);Pct:=2/(Pds+1);{use "1/Pds" for Wilders
Smoothing}Lb:=Dlb*(LastValue(Cum(1)-0)=Cum(1));H1:=Lb OR Minute()=10
OR Minute()=25OR Minute()=40 OR Minute()=55
;C1:=ValueWhen(1,H1,C);Ema:=If(Cum(H1>0)=1,C1,ValueWhen(1,H1,PREV)*(1-Pct)+(C1*Pct));Ema;Roy-----
Original Message ----- From: "moscar.1"
<moscar.1@xxxxxxxxxxx>To:
<equismetastock@xxxxxxxxxxxxxxx>Sent: Friday, May 02, 2003 2:43
AMSubject: Re: [EquisMetaStock Group] Multiple time frameThank
you Roy, and could you tell me if you have some examples about that?For
example using 1 minute or 5 minute.Regards.Oscar.
----- Original Message ----- From: Roy Larsen To:
equismetastock@xxxxxxxxxxxxxxx Sent: Thursday, May 01, 2003 2:17
AM Subject: Re: [EquisMetaStock Group] Multiple time
frame Hi Oscar This may be a little difficult
because 15 is not cleanly divisible by 2. Sampling data every 7.5
periods could be messy. Using 1 minute or 5 minute bars would not be
such a problem. I'll think about it and come back toyou.
Roy ----- Original Message ----- From: "moscar.1"
<moscar.1@xxxxxxxxxxx> To:
<equismetastock@xxxxxxxxxxxxxxx> Sent: Thursday, May 01, 2003
5:01 PM Subject: [EquisMetaStock Group] Multiple time
frame Roy, I just want to ask you for your
assistance with the multiple timeframe matter. I would
like to know how can I plots a 15 minutes user inputted EMA on
2min chart. Thank you.
Oscar. Yahoo!
Groups Sponsor To unsubscribe from this group, send an
email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx Your use of
Yahoo! Groups is subject to the Yahoo! Terms of
Service.To
unsubscribe from this group, send an email
to:equismetastock-unsubscribe@xxxxxxxxxxxxxxxYour
use of Yahoo! Groups is subject to the <A
href="">Yahoo! Terms of Service.
Yahoo! Groups Sponsor
ADVERTISEMENT
To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
|