PureBytes Links
Trading Reference Links
|
is this the function your after?
it was called 'detrend' function
cameron
{*******************************************************************
Description : This Function returns Detrended Price Oscillator
Provided By : Omega Research, Inc. (c) Copyright 1999
********************************************************************}
Inputs: Price(Numeric), Length(Numeric);
Variables: AvgVal(0), DFact(0);
AvgVal = Average(Price, Length);
DFact = (Length*.5) + 1;
If CurrentBar > DFact Then
Detrend = Price - AvgVal[DFact]
Else
Detrend = 0;
-----Original Message-----
From: Al Hussman [mailto:alfie@xxxxxxxx]
Sent: Thursday, June 07, 2001 8:37 AM
To: omega-list@xxxxxxxxxx
Subject: TS4 & SC4 Owners
Do any of you have the "Detrended Oscillator" in your Power Editor or Quick
Editor? (Not the "Detrend.ELA" which resides in everyone's!). It's a 4
plot indicator which works very nicely. Mine got deleted when I had to
re-install SC4 EOD.
If you do I sure would like to get it! If you don't, who do you think
might have it ? TIA
Attachment:
Description: "DETREND.ELA"
|