KJ, Glad the Export.AFL helped. As far as learning curve, that is dependant on how familiar you are with programming in general. I had no background in programming when I started with AB, so it has been slow for me. The good news is there is always someone willing to help on this board, so you are not On your own. Best recommendation I can give you is to go through EVERY page of the users manual, absorb what you can, then try to program some of your ideas. If they don't work, post a question here. Good Luck, Don Lindberg -------Original Message------- From: mytakeismine Date: 12/1/2006 10:33:59 PM To: [email protected] Subject: [amibroker] Re: Open All Stocks in a watchlist in new windows. Hey Don Thanks I knew there was a way I just wasn't sure how, THANKS Alot. I'm running on 12 hrs of sleep for 2.5 days gotta get some sleep right now I'll let you know how it comes out tomorrow. Say Don I have only had AB for a week how steep is the learning curve on programming in AB? I have been trying to read to get my mind wrapped around it and have written in Paradox(need to learn keywords and their functions) Thanks again kj mytakeismine
--- In [email protected], "Don Lindberg" <[EMAIL PROTECTED]> wrote: > > Kj, > I use the following script to export a cvs file of any stocks that I can > run a Exploration on. Once the Exploration is complete I hit the Export > button in Auto Analysis screen and give my file a name. I then open the cvs > in Excel, strip out everything but the ticker symbols and save. Now I can go > to Symbol>Watchlist>Import, and create a Watchlist with the symbols I saved. > //Code to create a cvs file for Export. > // As written below this will give a list of ALL stocks in your database. > // To get a partial list just change the Filter line. > //Example - to get a list of only stock over $15 change to Filter=Close > 15 > > Filter=1; > AddColumn(O,"Open"); > AddColumn(H,"High"); > AddColumn(L,"Low"); > AddColumn(C,"Close"); > AddColumn(V,"Volume",1.0); > AddColumn(OI,"Open Interest",1.0); > > Hope this helped. Feel free to ask me for further info. > > Don Lindberg > > -------Original Message------- > > From: mytakeismine > Date: 12/1/2006 10:17:08 AM > To: [email protected] > Subject: [amibroker] Re: Open All Stocks in a watchlist in new windows. > > I'm looking to do the same. I am new and am still useing rueters to > update however I would like to export a "decent" list of stock to > get quotes untill I change to quotes plus. You can do it if you > enter them into a watck list... I haven't figured that out... other > than one at a time. > > kj > mytakeismine > > > --- In [email protected], RajeevM <rajeevmundra@> wrote: > > > > Hello > > > > I am looking to do this > > > > "Open All Stocks in a watchlist in new windows." > > > > Is there any automated way of doing this? > > > > or any AFL or javascript which can do this work of opening > different stocks > > in new windows > > if given the list name by exporting it from a watch list? > > > > thanks for your time. > > > > regards > > rajeev > > >
