Enter At Market for Amibroker (AFL)
saiflingkon about 15 years ago Amibroker (AFL)
This afl works on scan. No chart will be plot. It gives buy and sell signal on scan.
Indicator / Formula
Copy & Paste Friendly
// 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 Market0 comments
Leave Comment
Please login here to leave a comment.