// Downloaded From https://www.WiseStockTrader.com
//	EnterAtMarket.afl
//
//	Entry at the Market
//
//	This example uses a simple moving average crossover to 
//	illustrate entering a long position at the market
//	
//	The delay between the signal and the entry is
//	controlled either by the Settings window or the AFL code
//	
//	The following code will insure that trades will be made 
//	on the Close of the same bar that generates the Buy or
//	Sell signal.
SetTradeDelays(0,0,0,0);
BuyPrice = C;
SellPrice = C;

//	The trading system is a simple moving average crossover
MA1 = MA(C,5);
MA2 = MA(C,25);

//	The Buy signal is generated on the bar when MA1 crosses
//	from below MA2 to above MA2.
Buy = Cross(MA1,MA2);
Sell = Cross(MA2,MA1); 
//Figure 7.1 Enter at Market