PureBytes Links
Trading Reference Links
|
After sending the email, I thought that that would be the best idea...
I'm sending a couple of indicators, since if you can solve the PREVs from
these, I can adapt the solutions to the rest :).
Indicator 1 (Costarios)
var1 := Mov(C,14,S);
var2 := Mov(C,28,S);
var3 := 14;
var4 := 28;
If( Alert(var1 > var2, var3) > Alert(var1 < var2, var3), If(Alert(var1 >
var2, var4) >
Alert(var1 < var2, var4),1,0.5), If(Alert(var1 > var2, var3) < Alert(var1 <
var2, var3), If(Alert(var1 > var2, var4) < Alert(var1 < var2,
var4),0,0.5),PREV))
Indicator 2 (Para baixo)
LowDays := Input("Enter # days to cover last LOW for CBL calc'n:", 3, 55,
40);
If(LOW > LLV(LOW, LowDays), {then ...} PREV, {previous CBLlo, else...}
If(Ref(H,-2) > Ref(H,-1) AND Ref(H,-2) > H AND Ref(H,-1) > H, {then ...}
Ref(H,-2), {2nd day back high,else...} If((Ref(H,-3)> Ref(H,-2) AND
Ref(H,-3) > Ref(H,-1) AND Ref(H,-3) > H) AND (Ref(H,-2)> H OR Ref(H,-1) >
H), {then ... } Ref(H,-3), {3rd day back high,else...} If((Ref(H,-4)>
Ref(H,-3) AND Ref(H,-4) > Ref(H,-2) AND Ref(H,-4) > Ref(H,-1) AND Ref(H,-4)
> H) AND (Ref(H,-3)> H OR Ref(H,-2) > H OR Ref(H,-1) > H), {then... }
Ref(H,-4), {4th day back high,else...} If((Ref(H,-5)> Ref(H,-4) AND
Ref(H,-5) > Ref(H,-3) AND Ref(H,-5) > Ref(H,-2) AND Ref(H,-5) > Ref(H,-1)
AND Ref(H,-5) > H) AND (Ref(H,-4)> H OR Ref(H,-3) > H OR Ref(H,-2) > H OR
Ref(H,-1) > H), {then ...} Ref(H,-5), {5th day back high,else...} PREV
)))));
Tks a lot
Andre
----Original Message Follows----
From: "Jose Silva" <josesilva22@xxxxxxxxx>
Reply-To: equismetastock@xxxxxxxxxxxxxxx
To: equismetastock@xxxxxxxxxxxxxxx
Subject: [EquisMetaStock Group] Re: Help with indicator
Date: Fri, 17 Mar 2006 20:23:15 -0000
Andre, it may be best if you could post one or two of your component
indicators at a time, rather than overwhelming the usergroup with the
whole lot all at once.
jose '-)
http://www.metastocktools.com
--- In equismetastock@xxxxxxxxxxxxxxx, "Andre Faustino"
<andre_faustino@xxx> wrote:
>
> Hi...
>
> I have an indicator that I like to use on my daily charts but, since
> it uses several PREV functions, it takes 1/1.5 minutes to load in
> each chart (and if I make a change or a refresh of the price, it
> also takes a minute to input the new values).
>
> I was wondering if I can put the set of indicators here (this
> indicator is composed by 10 diferent indicators) so that someone can
> take a look at it and make it "functional".
>
> Tks
> Andre
------------------------ 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/
|