RE: [amibroker] Re: Cumulative Volume Indicator

2006-12-09 Thread Terry
Or just make the begval 1 minute sooner... begvol = TimeNum() == 093400; -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mjarvis999 Sent: Saturday, December 09, 2006 20:35 To: amibroker@yahoogroups.com Subject: [amibroker] Re: Cumulative

[amibroker] Re: Cumulative Volume Indicator

2006-12-09 Thread mjarvis999
The interesting thing is the first bar is not added to the cumvol, when using flip. This is the cumulative volume script that I use. D = Day(); CV[0]=V[0]; for(i=1;i wrote: > > Interesting results: > > begvol = TimeNum() == 093500; > endvol = TimeNum() == 114500; > CountWhile = Flip(begvol,endvo

Re: [amibroker] help on a watchlist

2006-12-09 Thread Joe Landry
Hello Don... I've got your screen working and it's going to take a few minutes to walk through the all the tickers. It's producing a select list of stocks representing an IBD strategy which goes BUY HIGH and (hopefully) SELL HIGHER. I've found that this works in an uptrending market, but then a

[amibroker] How do I transfer my custom keyboard shortcuts to another computer?

2006-12-09 Thread tradinghumble
Just wondering if anyone can tell me where the custom keyboard shortcuts are stored. Thanks.

RE: [amibroker] Cumulative Volume Indicator

2006-12-09 Thread Terry
Interesting results: begvol = TimeNum() == 093500; endvol = TimeNum() == 114500; CountWhile = Flip(begvol,endvol); Cumvol = IIf(CountWhile,Sum(V,BarsSince(begvol)),0); Plot(Cumvol,"cumvol",1); -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behal

[amibroker] Re: Access to fundamental data using QuotesPlus

2006-12-09 Thread trb0428
Chris, ThanksI haven't used AmiQuote in a while since I starting using QP but I'll give it a try as you suggest. Thanks for the idea. I may reach out to you again if I hit any issues. Thanks, Tom --- In amibroker@yahoogroups.com, "Chris DePuy" <[EMAIL PROTECTED]> wrote: > > Tom, > I do n

[amibroker] Re: Notepad in AmiBroker 4.81

2006-12-09 Thread trb0428
Graham, Thanks... it seems to be working fine now...not sure what happened to fix itcomputers...go figure? Thanks, Tom --- In amibroker@yahoogroups.com, Graham <[EMAIL PROTECTED]> wrote: > > Try clicking in the notepad window when you change symbols > > > -- > Cheers > Graham > AB-Wr

Re: [amibroker] Cumulative Volume Indicator

2006-12-09 Thread Graham
Assuming you have bars with the defined times. You are also doubling up on the conditions, begvol = TimeNum() == 093500; is a 0 or 1, so you can never have it correct in the next part cumvol = IIf(TimeNum() >= begvol .. Here is a short routine for what I think you are wanting, to sum

[amibroker] Cumulative Volume Indicator

2006-12-09 Thread Eric and Christy Wagner
I am trying to create a cumulative volume indicator based upon certain times during the day. For example, I would like to know the premarket volume of spy from 8amEST to 092000 EST. This would be cumulative from 8 to 9:20 and then it would go to 0 and start over every day from 0 at 8AM EST.

Re: [amibroker] Re: help me with a buy signel

2006-12-09 Thread Graham
Do they all equal -1 on the same bar? If they are not all exactly equal to -1 on the same bar you will not get a signal You have to be precise in the conditions. Do you want them to all cross the -1 value on the same bar, in which case use the cross function for all 3 statements or are you looking

[amibroker] Explore script for finding stocks potentially interesting for intraday trading

2006-12-09 Thread discuslorraine
Hello, In the same line as the previous posts, here is a small script that looks for stocks (within an EOD database) that are presumably interesting to trade on an intraday basis. Criteria for selection are explained below, I don't claim they are all necessary meaningful : ) but that's a starting

Re: [amibroker] help on a watchlist

2006-12-09 Thread Don Lindberg
Jim and Joe and Group, I got fascinated by your ideas and started doing a bit of playing around. Came up with an Adjustable Exploration that automatically saves to a Watchlist . Hope you find this useful. Code follows, just cut and paste into Formula Window. // I have adapted this AFL from on

[amibroker] Re: help me with a buy signel

2006-12-09 Thread Dheya1
its getting regularly and i can send you photo for that --- In amibroker@yahoogroups.com, "ricko8294_98" <[EMAIL PROTECTED]> wrote: > > That is probably because all three do not get to -1 at the same time. > R > --- In amibroker@yahoogroups.com, "Dheya1" wrote: > > > > i got this one from ami

Re: [amibroker] help on a watchlist

2006-12-09 Thread JIM WIEHE
Yes we have a winner ,thanks! --- Joe Landry <[EMAIL PROTECTED]> wrote: > Jim - This works, and it's a case of where IIF is > not used. You're not > > operating on arrays and I think you want to control > the flow of the AFL code. > > To try it out select for a filter a market (eg > NASDAQ)

[amibroker] Ft Monitor

2006-12-09 Thread richardlboroff
To All Last year's AmiBroker conference was a big hit and this year's conference promises to be even bigger. To help you get ready for this year, all the presentations from last year are on sale for the next 10 days. Order by December 15, and get 20% off. You can order the Conference itself, $2

Re: [amibroker] help on a watchlist

2006-12-09 Thread Joe Landry
Jim - This works, and it's a case of where IIF is not used. You're not operating on arrays and I think you want to control the flow of the AFL code. To try it out select for a filter a market (eg NASDAQ) and select 1 bar for the range, run Explore HTH JOE qprank = GetExtraData("epsrank"

[amibroker] Average Traded Price

2006-12-09 Thread K. Karunakaran
The database is in tick format, I need the volume average for the current whole day, for the last 30 minutes and one hour avearge, somebody please help me. Thank you very much, Happy Chirstmas. Warm Regards.

Re: [amibroker] help on a watchlist

2006-12-09 Thread JIM WIEHE
thanks but i already tried that one, it did not work either. the results were the same as my other method in that all the common stocks go into the watchlist. --- Anthony Faragasso <[EMAIL PROTECTED]> wrote: > qprank = > GetExtraData("epsrank")+GetExtraData("qrs")+RSI(6) ; > > Filter= C>4 AND

Re: [amibroker] help on a watchlist

2006-12-09 Thread Anthony Faragasso
qprank = GetExtraData("epsrank")+GetExtraData("qrs")+RSI(6) ; Filter= C>4 AND MA(V,11)>15 AND qprank>200; CategoryAddSymbol( "", categoryWatchlist, 7 ); - Original Message - From: jim_wiehe To: amibroker@yahoogroups.com Sent: Saturday, December 09, 2006 5:24 AM Subject:

[amibroker] Re: AmiBroker VS Wealth-Lab ?

2006-12-09 Thread Dave
I tried several other charting apps before choosing AmiBroker (WLD was not one of them). Of the others that I evaluated none of them had any where near the versatility that AB has. If you run into something that can't be handled with the built in language you can usually solve the problem using W

[amibroker] Time frame compression Help

2006-12-09 Thread K. Karunakaran
I am using the tick data base, one template with 6 sheets in that one with tick chart, five minutes, 15 minutes and hourly etc. I use the following for higher duration charts. TimeFrameSet( in5Minute ); Plot( Close, "Price", colorWhite, styleCandle ); Plot(EMA( Close,50), "A50", colorYellow );

[amibroker] help on a watchlist

2006-12-09 Thread jim_wiehe
I am trying to be a little more productive with a prefilter performed on common stocks. My goal is to have the basic prescan place the results automatically into a watchlist. My results are the complete list of common stocks going into the watchlist. AA menu produces accurate results but

[amibroker] Re: Help needed for "Highest / Lowest value of the last n-bars" problem

2006-12-09 Thread kose_u
thanks graham, but this code only pinpoints the highest value in case it is the highest for the last 20 days and the output of the function is in true/false nature; whereas in my case i donot want to point out a time horizon like it is 20 bars in this sample and need the consecutive values of t