PureBytes Links
Trading Reference Links
|
One suggestion is to use the CloseW function. This is new I think in Build
20 or so. For example if you are wanting to subtract the average of the
last 3 weeks closes from a 5 day moving average of the daily closes the
following should work.
{5 day Moving Average less moving average of close of previous 3 weeks}
Inputs: DayLen(5), WeekLen(3);
Vars: Osc(0),WeekMa(0);
WeekMA=(CloseW(1)+CloseW(2)+CloseW(3))/WeekLen;
Osc=Average(Close,DayLen)-WeekMA;
Plot1(Osc,"Weekly Osc");
-----Original Message-----
From: Jaime Loayza O <jloayzao@xxxxxxxxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: April 7, 1998 10:36 AM
Subject: EL problem
I'm trying to use an oscilator that substract a WEEKLY average from a daily
close, for that I put
the daily prices in data1 and the weekly prices in data2, everything works
fine until I try to reference
back data. I tried c[x]-average(c[x] of data2,len) and (c-average(c of
data2,len))[x] and didn't work.
I'm thinking now to put the value on an array and then reference it, but
will use a lot of memory.
Someone have an idea of what I can do?
Is that a bug or just I did something wrong?
I will appreciate some help
Jaime Loayza
|