[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
Ok thanks, I had figured the blank line thing out Still wondering what to do with this "<<...>>"? Anyhow in the code I'm not getting a value for "n" or any values for A1 to A9 when scrolling through the chart, also no Red Dots anywhere. Sorry to be such a pain... Again thankyou! I used thi

RE: [amibroker] Coding for indicators

2006-10-22 Thread Mr. Valley
Open AmiBroker Go to the top middle of the screen to Help >> Web Links >> AFL Function Reference http://www.amibroker.com/guide/afl/ and also you can check out the library (also under web links ) to get some ideas http://www.amibroker.com/library/    -Original Message-From: amib

RE: [amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread J. Biran
Thx. Joseph Biran -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of marketmonk777 Sent: Sunday, October 22, 2006 8:37 PM To: amibroker@yahoogroups.com Subject: [amibroker] Re: coloring candlesticks a

RE: [amibroker] OT: Win XP - Read Only files

2006-10-22 Thread J. Biran
try running CMD.exe from your root folder then : ATTRIB -R [drive:] /S /D   If this does not fix it you have a bigger problem. Didn't you have another bizarre behavior just recently?You may want to consider re-installing Win XP (after backing up important data). Do not mark any drivesas pr

RE: [amibroker] Coding for indicators

2006-10-22 Thread Thomas Z.
Hello,   You can view and edit all codes directly in amibroker. Just go to View – Charts, than select any indicator, make a right mouse button click and select EDIT. The same can be done with the right mouse button menu at every chart   Thomas www.tradingbasis.com  

[amibroker] Coding for indicators

2006-10-22 Thread jlami11
Hello, I just started using amibroker. Does anyone know where to get the coding for the indicators i.e. the actual calculations in AFL coding? Can this be accessed in the program or is it avaliable elsewhere? Thanks, any help is appreciated. Please note that this group is for discussion

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread Fred
"An Error Message" is not terribly specific ... That's kind of like me taking my car to the mechanic and saying "I have a problem with my car, can you fix it ?" ... I suspect the mechanic might want to know presactly what problem I think I'm having ... For starters ... DON'T ALTER THE CODE ...

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
I really appreciate your help, again thanks for taking time out and helping. The code looks really great! But I've copied and loaded the code and get an error message. I removed the underscore lines after the AND and OR to make sure that's not it and also this at end <<...>> with no luck. I've

[amibroker] OT: Win XP - Read Only files

2006-10-22 Thread Ara Kaloustian
I have every file folder and subfolder marked as read only, even though the files within these folder are normal (not read only).   Removing the read only check from folder properties, does nothing. Next time I look at its properties, it is again marked as read only.   This seems to causin

[amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread marketmonk777
Hi Joseph, Please go to: http://www.amibroker.com/feedback/index.php log in with the same username and password that allows you to download new beta versions. Click on the link "All open" under Suggestions Click on the Column Heading called Issue # Click on it again to change sort order (or scr

RE: [amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread J. Biran
Can you elaborate Issue #36 is where? Joseph Biran -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of scourt2000 Sent: Sunday, October 22, 2006 5:41 AM To: amibroker@yahoogroups.com Subject: [amibroke

[amibroker] Re: WEEKLY function workaround

2006-10-22 Thread Fred
NewWeek = dw < Ref(dw, -1); --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > Hello, > > Simply Use DayOfWeek() function: > http://www.amibroker.com/f?dayofweek > > dw = DayOfWeek(); > NewWeek = dw != Ref( dw, -1 ); > > NewYear = Year() != Ref( Year(), -1 ); >

[amibroker] Re: WEEKLY function workaround

2006-10-22 Thread Fred
Months are pretty clear i.e. they begin and end whent the month in a date changes ... Week is not so clear ... Are they every 5 bars ? ( What about Holidays ? ) ... Do they end on every Friday and/or begin on every Monday ( Again, what about Holidays ? ) But in any case it is relatively sim

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread Fred
While this is probably still not enough info to totally understand what you are looking for at least I have a clue now ... The results would in essence be a collection of arrays beginning at some point in time, ending at some other point in time with each value in an individual array being of t

[amibroker] Re: Advice on Populating New Set of Industries

2006-10-22 Thread ab319320
Don This thread has been helpful. Thanks After I rename the "broker.*" files in AB do I use the 2 broker files in Hemscott or your file herein. Your file seems to be a MS Word file as I look at it on my computer. Is that an informational file and the Hemscott is a working file(s)? > >

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
That's the method I used cause I came across some code in some other post and that's about as far as I can take it trying to get my end result. In my earlier post I was also asking for another way to get to the same results. Anyhow the chart below may show what I'm trying to achieve. Thanks, Ric

Re: [amibroker] WEEKLY function workaround

2006-10-22 Thread Tomasz Janeczko
Hello, Simply Use DayOfWeek() function: http://www.amibroker.com/f?dayofweek dw = DayOfWeek(); NewWeek = dw != Ref( dw, -1 ); NewYear = Year() != Ref( Year(), -1 ); WeekNumber = Sum( NewWeek, BarsSince( NewYear ) ); Best regards, Tomasz Janeczko amibroker.com - Original Message - Fro

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread Fred
Yep ... and if I had understood what you were asking I would have responded ... maybe I'm just dense, but I don't have a clue what you're asking ... --- In amibroker@yahoogroups.com, "rlfoxworth2006" <[EMAIL PROTECTED]> wrote: > > Is this the right forum for this type of help here? > > > ---

[amibroker] WEEKLY function workaround

2006-10-22 Thread chapman49682
A suggestion I made at the AmiBroker site recently was a "WEEK" function similar to "MONTH". I don't, however, think it will happen any time soon. I used MONTH to look back over several years to find which months each of my various systems worked the best - and worst. It was a very valuable

[amibroker] Re: Four basic services

2006-10-22 Thread Fred
Not to mention the fact that there is a BETA AB Forum for discussion regarding potential BETA issues. --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > Hello, > > Here are four basic services that every AmiBroker user should know: > > 1. SUPPORT > The only offi

[amibroker] Four basic services

2006-10-22 Thread Tomasz Janeczko
Hello, Here are four basic services that every AmiBroker user should know: 1. SUPPORT The only official support channel is e-mail to support {at} amibroker.com 2. FEEDBACK The only official feedback channel (suggestions for new features and bug reports) is Feedback Center at:: http://www.amibro

Re: [amibroker] Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread Kyle Smith
Thank you. With so many e-mails it's hard to keep up with each post. I just changed my settings to receive a block e-mail instead...this should help me catch important topics. Thanks again, Kyle Joe Landry wrote: > > Kyle > > Use the following, file, new, default chart. > > You have to read

[amibroker] Re: Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread me_rayme
If your version is 4.87.1, that is the problem I had. The screen goes gray! All data is gone,forever. See Tomasz reply to me 102464 Hope you have a backup of the DATA file as my Data file was 1kb (no data) on over 5000 stocks. I had a full backup so now ok. Ray --- In amibroker@yahoogroups.c

Re: [amibroker] Re: Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread Tomasz Janeczko
Ray, I repeat: There is NO problem with version 4.87.1 Right click works fine so saving of database does. "Gray" screen means no document open. This is so because you have CLOSED the chart using "X" button. Every Windows user that has very minimum experience with Office applications knows tha

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
Fred, Everyday I want to get Yesterdays High and Lows at 950 and compare values starting at yesterdays 1000 to see if any bars touches or crosses the 950 High and Low value. (Otherwise wait ten minutes after 950 snd keep checking until the 950 values are reached again.) Plot the open lines each d

Re: [amibroker] Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread Tomasz Janeczko
You don't need to keep up with posts ! THIS LIST IS ***NOT*** NEWS SOURCE ! There is a DEVLOG that you should always check for up-to-date information: http://www.amibroker.com/devlog Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "Kyle Smith" <[EMAIL PROTECTED]>

Re: [amibroker] Re: Need help Figuring Out.

2006-10-22 Thread Tomasz Janeczko
Hello, Yes it is right place but de* functions are exported by 3rd party plugin and you may get better response from e-mailing the plugin author because it seems that this particular plugin is not very widely used. Best regards, Tomasz Janeczko amibroker.com - Original Message - From:

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
Is this the right forum for this type of help here? --- In amibroker@yahoogroups.com, "rlfoxworth2006" <[EMAIL PROTECTED]> wrote: > > Is there another way or better way to do this? > > RichardF > > > --- In amibroker@yahoogroups.com, "rlfoxworth2006" > wrote: > > > > I've figured this much ou

RE: [amibroker] Re: Setting up component groups from TC2000

2006-10-22 Thread RR
Dave, Thanks for your reply. I had forgotten that you could only assign a stock to only one membership category. What I would prefer to see is a new category added and then the AB plug-in support to automatically convert any TC2000 watch lists or QP lists available for direct use within AB.

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
Is there another way or better way to do this? RichardF --- In amibroker@yahoogroups.com, "rlfoxworth2006" <[EMAIL PROTECTED]> wrote: > > I've figured this much out where the line plots for the first day, but > can't figure out how to make the plot continue to till the value > closes the line. >

Re: [amibroker] Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread Joe Landry
Kyle Use the following, file, new, default chart. You have to read the forum mail. This was also a recent reply by TJ. JOE - Original Message - From: "smithkt123" <[EMAIL PROTECTED]> To: Sent: Sunday, October 22, 2006 11:52 AM Subject: [amibroker] Amibroker Problem - can't pull up c

Re: [amibroker] Bug? Can't right click on watch list

2006-10-22 Thread Joe Landry
Mr Smith...you need version 4.87.1. This was flagged a couple of times on the forum since the very first release but you missed it. http://www.amibroker.com/devlog/2006/10/20/amibroker-4871-beta-released-quic HTH JOE - Original Message - From: "smithkt123" <[EMAIL PROTECTED]> To: Sen

[amibroker] Re: Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
I've figured this much out where the line plots for the first day, but can't figure out how to make the plot continue to till the value closes the line. RichardF //Using the deDateTime.dll from the 3rd Party area. //http://www.amibroker.org/3rdparty/deDateTime.zip Plot( C, "Close", ParamColor("C

[amibroker] Bug? Can't right click on watch list

2006-10-22 Thread smithkt123
Whenever I right click on my watch list to erase tickers, I get a the following bug. How can this be fixed??? -- AmiBroker version 4.87.0.4550 ( cooltool.dll 4.87.0, mfc42.dll 6.2.4131, msvcrt.dll 7.0.2600 ) Microsoft Window

[amibroker] Amibroker Problem - can't pull up charts anymore

2006-10-22 Thread smithkt123
I had the "right-click problem", but I downloaded the quick-fix and it's fine. Now, however, I can't double-click on a ticker to bring up a chart. In fact, I can't bring up any charts at all...it's just a gray screen. Do I need to reload something? How can I get back to the normal functionality

RE: [amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread Thomas Z.
Hi Steve,   i fully agree with you. I have suggested it already some years ago to Tomasz. I would really like to have this possibility. Currently I use filled candles as shown in my snapshot.   Thomas www.tradingbasis.com   From: amibroker@yahoogroups.com [mailto

[amibroker] Re: New file uploaded to amibroker

2006-10-22 Thread Dennis And Lisa
Go to the Files section and look in Elder Triple Screen for all the codes. Dennis --- In amibroker@yahoogroups.com, amibroker@yahoogroups.com wrote: > > > Hello, > > This email message is a notification to let you know that > a file has been uploaded to the Files area of the amibroker > grou

Re: [amibroker] all ; are gone , beta .87

2006-10-22 Thread Tomasz Janeczko
No, I can NOT confirm that. AFL editor works perfectly fine and semicolons are where they were. BTW: there were NO changes to the editor for many versions. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "dorzfn" <[EMAIL PROTECTED]> To: Sent: Sunday, October 22, 2

[amibroker] Need help Figuring Out.

2006-10-22 Thread rlfoxworth2006
I want to get Yesterdays High at 950 and compare values starting at 1000 to see if any bars touches or crosses the 950 value. Then plot a line each day until a bar touches or crosses that line. When the bar touches the 950 high then don't plot the line next day. Lines may sometimes have to pl

[amibroker] Elder Triple Screen

2006-10-22 Thread Dennis And Lisa
Since Elder came out eith his new book, "Entries and Exits", here is the link to the codes used in his Triple Screen Method. www.finance.groups.yahoo.com/group/amibroker/files/Elder%20Triple% 20Screen/ Dennis Please note that this group is for discussion between users only. To get supp

[amibroker] Re: New file uploaded to amibroker

2006-10-22 Thread Dennis And Lisa
Check them all out at http://finance.groups.yahoo.com/group/amibroker/files/Elder%20Triple% 20Screen/ Dennis --- In amibroker@yahoogroups.com, amibroker@yahoogroups.com wrote: > > > Hello, > > This email message is a notification to let you know that > a file has been uploaded to the Files a

[amibroker] New file uploaded to amibroker

2006-10-22 Thread amibroker
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the amibroker group. File: /Elder Triple Screen/Elder Triple Screen Scan.afl Uploaded by : asilddnasinned <[EMAIL PROTECTED]> Description : Triple Screen Exploration

[amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread marketmonk777
I forgot to clarify that I meant to specifically request the ability to color the outline of the candlestick. Doing so would help tremendously with the contrast and readability of the candle. Dave --- In amibroker@yahoogroups.com, "marketmonk777" <[EMAIL PROTECTED]> wrote: > > Hi Steve, > > I al

[amibroker] all ; are gone , beta .87

2006-10-22 Thread dorzfn
this is probly been brought up already but when i go edit afl code all of the endings are gone (;)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 | T

[amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread marketmonk777
Hi Steve, I also agree and added my support to this feature in the feedback center sometime ago. This is what I wrote: - IMHO - it is the goal of all of us traders to proper interpret the current battle between the bulls and the bears (

[amibroker] Re: coloring candlesticks according to code?

2006-10-22 Thread scourt2000
Thomas, > Yes, it's easy, take a look: What's not easy is getting Marcin and Tomasz to realize that you still cannot independently outline the colored candles (e.g., in black) to make them stand out better from the background chart color. I refer you to (my) Issue #36 on the Amibroker webs

RE: [amibroker] coloring candlesticks according to code?

2006-10-22 Thread Thomas Z.
Yes, it’s easy, take a look:   Candlecolor = IIf(C>O,colorGreen,IIf(C

Re: [amibroker] Directory for Home Grown Functions ???

2006-10-22 Thread Tomasz Janeczko
Answer is: anywhere. But the standard location is : Formulas\CUSTOM subfolder (by default full path is C:\Program Files\AmiBroker\Formulas\Custom) If you want to have your functions #included then default location is: Formulas\Include Best regards, Tomasz Janeczko amibroker.com - Original Me