Thanks. works great. --- On Wed, 11/4/09, sebastiandanconia <[email protected]> wrote:
From: sebastiandanconia <[email protected]> Subject: [amibroker] Re: Conditional Buy/Sell modelling in AB To: [email protected] Date: Wednesday, November 4, 2009, 1:10 PM You can use "Foreign" to refer to what happens with the SP500. Ex. BASE=Foreign( "^GSPC"," C",1); //^GSPC is Yahoo!'s symbol for SP500 Buy=Cross(BASE, EMA(BASE, 200)); //Buy on SP500 cross above 200 EMA Sell=Cross(EMA( BASE,200) ,BASE); //Sell on SP500 cross below 200 EMA Sebastian --- In amibro...@yahoogrou ps.com, Nick de Peyster <nickdepeyster@ ...> wrote: > > I can't figure out how to model the following S&P 500 system in AB: > > BUY = If currently a SELL then buy if S&P>200 day moving average > > > > > >
