PureBytes Links
Trading Reference Links
|
You also need a trend condition by referring to the
MACD of Data2 (5x longer time frame).
--- Laura <laura_lue@xxxxxxxxxxx> wrote:
> here is some code. the stop is optional. should be
> something faster. not
> verified.
> hope it helps
> laura
>
> vars: FrceIdx(0);
>
> FrceIdx = (V*(C-C[1]));
>
> if xaverage(closew(1),13) > xaverage(closew(2),13)
> and
> XAverage(FrceIdx,2) < 0 then begin
> buy ("TSSKauf") at high + 1/8 stop;
> end;
>
> if xaverage(closew(1),13) < xaverage(closew(2),13)
> then begin
> exitlong ("TSSVerkauf") at low[1] stop;
> end;
>
>
>
> ----- Original Message -----
> From: Jim <jim_booner@xxxxxxxxx>
> To: <code-list@xxxxxxxxxxxxx>
> Cc: <omega-list@xxxxxxxxxx>
> Sent: Friday, December 01, 2000 9:27 AM
> Subject: Triple Screen System
>
>
> > Hello,
> >
> > is someone aware of Alexander Elders Triple Screen
> Trading System? Maybe
> > this person has coded the system and is willing to
> share it?
> >
> > Thanks a lot
> > Jim
> >
> >
> >
>
|