Long = Close > MA(Close,20); Short = Close < MA(Close,20); If you mean close of last completed bar, then use
Long = Ref(Close,-1) > MA(Close,20); ----- Original Message ----- From: "mravie7" <[EMAIL PROTECTED]> To: <[email protected]> Sent: Thursday, March 22, 2007 9:05 PM Subject: [amibroker] Help please > Hi, > can someone help in writing a formula for scanning during trading hours > and otherwise......... > > long ; when the close of the latest bar / candle is above the 20 period > moving average > short ; when the close of the latest bar / candle is below the 20 > period moving average. > > thanks and regards > Ravi > > > > Please note that this group is for discussion between users only. > > To get support from AmiBroker please send an e-mail directly to > SUPPORT {at} amibroker.com > > For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG: > http://www.amibroker.com/devlog/ > > For other support material please check also: > http://www.amibroker.com/support.html > > Yahoo! Groups Links > > >
