PureBytes Links
Trading Reference Links
|
--- clafis <clafis@xxxxxx> wrote:
>
>
> > Hello,
> >
> > could somebody give me a hint why there are no
> signals?
> > Whereīs my mistake?
> > Guess I am looking with closed eyes.
> >
> >
> > If High > Highest(H, X) And ModADX > ModADX[1]
try:
If High > Highest(H[1], X) And ModADX > ModADX[1]
etc.
> Then Buy;
> > If Low < Lowest(L, Y) Then ExitLong;
> >
> > If Low < Lowest(L, X) And ModADX > ModADX[1] Then
> Sell;
> > If High > Highest(H, Y) Then ExitShort;
> >
> > If High > Highest(H, X) And ModADX < ModADX[1]
> Then Sell;
> > If Low < Lowest(L, Y) Then ExitShort;
> >
> > If Low < Lowest(L, X) And ModADX < ModADX[1] Then
> Buy;
> > If High > Highest(H, Y) Then ExitLong;
> >
> > If MarketPosition = -1 Then Begin
> > If High > Parabolic(0.2)Then ExitShort;
> > End;
> >
> >
> > TIA,
> > clafis.
> >
>
|