PureBytes Links
Trading Reference Links
|
>>Highest(H, X)[1]
Returns Highest value of high over X periods for previous bar including
previos bar.
>>Highest(H[1], X)
Returns Highest value of high over X periods for this bar excluding this
bar.
Vitali Klinchik
-----Original Message-----
From: Valavalkar@xxxxxxx [mailto:Valavalkar@xxxxxxx]
Sent: Thursday, March 01, 2001 12:07 AM
To: jack_2231@xxxxxxxxx; "OMEGA-List <omega-list"@eskimo.com
Subject: Re: why_arenīt_there_any_signals?
Whats the difference between these two.The [1] is after the price in the
first, and after the brackets in the second.
Is it taking the today - 1 in both cases or is the logic different.
If High > Highest(H, X)[1] And ModADX > ModADX[1]
If High > Highest(H[1], X) And ModADX > ModADX[1]
> > 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.
> >
>
>>
|