Hello. Probably not the right time of year with holiday fun and games but I am 
keen to get this criteria attached to the bitsa system I have. If anyone finds 
my following attempt at coding the idea then please LOL. The chart link on the 
previous post explains the following. It is to buy and sell an index price.

foreign("XAO", "close")
 
Cond1 = Close > DEMA(Close, 250) AND EMA(Close, 250) < DEMA(Close, 250); 
Cond2 = Close > DEMA(Close, 250) AND DEMA(Close, 250) < EMA(Close, 250); 
Cond3 = Close > EMA(Close, 250) AND EMA(Close, 250) < DEMA(Close, 250);
Cond4 = Close < EMA(Close, 250) AND EMA(Close, 250) < DEMA(Close, 250);
Cond5 = Close < DEMA(Close, 250) AND EMA(Close, 250) < DEMA(Close, 250);
Cond6 = Close < DEMA(Close, 250) AND DEMA(Close, 250) < EMA(Close, 250);

Buy = Cond1 OR Cond2; 
Buy = Cond3 only after Cond4 is met; // i.e. a bar has to close lower than the 
EMA before Cond3 buy can be initiated            
   
Sell = Cond4 OR Cond5 OR Cond6; // Cond4 sells for Cond3, Cond5 sells for Cond1 
and Cond6 sells for Cond2
    
/////////////////////////////////////////////////

--- In [email protected], "jollypolly999" <jollypolly...@...> wrote:

> This is a pictorial representation of what I am trying to achieve. Hopefully 
> someone will be able to help please. The Bitmap is here: 
> http://groups.yahoo.com/group/amibroker/photos/recent/304841756/view
> 
> Please enlargen to see text.
 
> > --- In [email protected], "jollypolly999" <jollypolly999@> wrote:
> >  
>  There is something that I didn't explain in the above scenario. When the 250 
> DEMA is above the 250 EMA then one possibility can happen. The lower 250 EMA 
> doesn't get breached by the Index day bars so a re-entry signal would not 
> occur. To overcome this the code would need to act on the 250 DEMA (i.e. 
> enter/exit) if the lower 250 EMA is not breached (Index day bar closes below).
> 
> If the lower 250 EMA is breached (Index day bar closes below) then the 250 
> EMA is the ruling trigger for re-entry.
>


Reply via email to