[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: why aren´t there any signals?



PureBytes Links

Trading Reference Links

It looks like it is in the highest high area,
The High is never greater than the highest high and the low is never lower
than the lowest low,
It will work if the high is equal to the highest high or if it is greater
than the high of 1 bar ago,
High = Highest(H, X)
High > Highest(H, X)[1]
High > Highest(H[1], X)

Neville

-----Original Message-----
From: clafis <clafis@xxxxxx>
To: OMEGA-List <omega-list@xxxxxxxxxx>
Date: Wednesday, February 28, 2001 7:08 AM
Subject: why aren´t there any signals?


>
>
>> 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] 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.
>>
>
>