PureBytes Links
Trading Reference Links
|
I already did.
Lionel Issen <lissen@xxxxxxxxxxxxx> wrote: Eduardo:
Please post it here.
Lionel
_____
From: equismetastock@xxxxxxxxxxxxxxx [mailto:equismetastock@xxxxxxxxxxxxxxx]
On Behalf Of Eduardo Gontan Pulgarin
Sent: Sunday, August 20, 2006 1:29 PM
To: equismetastock@xxxxxxxxxxxxxxx
Subject: Re: [EquisMetaStock Group] Re: Envelope of an Oscillator
Marion, it's on its way!
Eduardo.
Marion Dickey <mbdick43@xxxx <mailto:mbdick43%40cox.net> net> wrote:
Excuse me, I meant the 3/10 Oscillator. Apparently I need someone to proof
read for me also.
Again, thanks and sorry,
Marion
----- Original Message -----
From: Marion Dickey
To: equismetastock@ <mailto:equismetastock%40yahoogroups.com>
yahoogroups.com
Sent: Sunday, August 20, 2006 11:00 AM
Subject: Re: [EquisMetaStock Group] Re: Envelope of an Oscillator
Would anyone know the Metastock code, or where I might find the Metastock
code for Linda Bradford- Raschke's 30/10 Oscillator?
Thanks in advance,
Marion
----- Original Message -----
From: Jose Silva
To: equismetastock@ <mailto:equismetastock%40yahoogroups.com>
yahoogroups.com
Sent: Saturday, August 19, 2006 5:23 PM
Subject: [EquisMetaStock Group] Re: Envelope of an Oscillator
Normalization code adapted from formula found at
http://www.metastoc <http://www.metastocktools.com> ktools.com :
===========================
Normalized Edson Oscillator
===========================
---8<---------------------------------------------
{ Normalizes indicator to -100% ~ +100% boundaries.
From: http://www.metastoc <http://www.metastocktools.com> ktools.com }
{ User inputs }
plot:=Input("plot: [1]Indicator, [2]Oscillator",1,2,2);
pds:=Input("Indicator periods",1,2600,21);
{ Indicator - Edson's oscillator example }
Ind:=fml("AAA");
{ Normalize indicator to historical highs/lows }
Oscillator:=(Ind-Lowest(Ind))
/Max(Highest(Ind)-Lowest(Ind),.000001)*200-100;
{ Plot:
Indicator on chart, oscillator in own window }
If(plot=1,Ind,Oscillator)
---8<---------------------------------------------
jose '-)
http://www.metastoc <http://www.metastocktools.com> ktools.com
--- In equismetastock@ <mailto:equismetastock%40yahoogroups.com>
yahoogroups.com, "Edson L F" <edsonlf@xxx>
wrote:
>
> Hi all,
>
> It would like to know as to make an envelope for oscillators with
> positive and negative scale (i.e: +1000/0/-1000). I tried this:
>
> **************************************************************
>
> ft1:=Input("Vertical %), 0,2000,200);
> CMOV:=fml("AAA") {oscilador};
> x:=Mov(CMOV,100,E);
> VShUP:= x*(1+(ft1/100) );
> VShUP:= x*(1-(ft1/100) );
> UP:=if(VShUP<0,-VShUP,VShUP);
> DN:=if(VShDN>0,-VShDN,VShDN);
> UP;DN
>
> **************************************************************
>
> In this case, the bands of the envelope if find in "0" (zero).
>
> How to make them bands to be parallel with "x"?
>
> Thanks,
>
> Edson
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
---------------------------------
All New Yahoo! Mail - Tired of Vi@xx@! come-ons? Let our SpamGuard protect
you.
[Non-text portions of this message have been removed]
[Non-text portions of this message have been removed]
---------------------------------
All new Yahoo! Mail "The new Interface is stunning in its simplicity and ease of use." - PC Magazine
---------------------------------
To help you stay safe and secure online, we've developed the all new Yahoo! Security Centre.
[Non-text portions of this message have been removed]
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/
|