Hi, i added all you suggested but for some reason the sellprice is just shown to be same as buy price in explorer. Specifically im testing entries with time exits. i wrote:
Buy = .........; sell = 0; applystop = (stopTypeNbar,stopModeBars, 10); Equity(1,0) Filter = Buy; Filter = Sell > 0; addcolumn(buyprice,"bp",1.3); addcolumn(sellprice,"sp",1.3); I'm trying to see all the entries with their time exits even if a position is open on a symbol already so i can't use backtester. Can someone pls tell me what im doing wrong here? Thanks in advance. > If you add this after the applystop > > Appplystop( .................); > Equity(1,0); > > this gives numbers to the sell signals, see help - applystop for what these > numbers are > Also check with the equity function as to the required numbers to have > inside the brackets (1,0) I know allows for this in charts alloowing to > ignore the last analysis dates range > you can then explore for when the sell occurs > filter = sell>0; > addcolumn(sellprice,"sp",1.3); > > > > -- > Cheers > Graham > AB-Write >< Professional AFL Writing Service > Yes, I write AFL code to your requirements > http://www.aflwriting.com 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 <*> To visit your group on the web, go to: http://groups.yahoo.com/group/amibroker/ <*> Your email settings: Individual Email | Traditional <*> To change settings online go to: http://groups.yahoo.com/group/amibroker/join (Yahoo! ID required) <*> To change settings via email: mailto:[EMAIL PROTECTED] mailto:[EMAIL PROTECTED] <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
