[amibroker] Where is my mistake here??

2008-06-21 Thread Mohammed
Hi, With the following code I need to use two colors: jj = c > O; UpColor = colorgreen; DownColor = colorred; GfxSelectFont( "Arial", 8, 700 ); GfxSetBkMode( 1 ); GfxSetTextColor( IIf( jj , UpColor , DownColor )); pxHeight = Status( "pxchartheight" ) ; //-- HIGH -- OP = "H

Re: [amibroker] AddSummaryRows -- AmiBroker 5.12.0 BETA released

2008-06-21 Thread Grant Noble
Um.. is anyone else finding the totals not being correct ? G Grant Noble wrote: > Thanks for AddSummaryRows. Would it be possible to nominate a column to apply > the summary flag to? > Currently we can use SetSortColumns(2) to sort by the second column. Why not > AddSummaryRows (2,1) to > to

Re: [amibroker] AddSummaryRows -- AmiBroker 5.12.0 BETA released

2008-06-21 Thread Grant Noble
Thanks for AddSummaryRows. Would it be possible to nominate a column to apply the summary flag to? Currently we can use SetSortColumns(2) to sort by the second column. Why not AddSummaryRows (2,1) to total the second column ? I don't really want to see my entry and exit prices totalled - jus

Re: [amibroker] Re: Multi Core Optimization, L2 Cache & Optimization Run Times

2008-06-21 Thread Keith McCombs
Interesting thread so far. But wouldn't it be nice if we had some numerical yardsticks so that different system configurations could be easily compared with one another? How about writing some benchmarks in afl? I assume the code wouldn't have to be very complex, nor would it have to be for

RE: [amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread Fred Tonetti
As the saying goes . If you want to kill it, give it to a committee . Or if you prefer . Brooks Law: Adding people to a late project makes it later . These at first seem somewhat amusing but there's a lot of truth in there . The problem for the consumer is . What happens when the o

Re: [amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread Dennis Brown
Brian, I spent 10 years as a "one man engineering show" designing whole computer systems, including the peripherals. Once I had my modular design methods in place, I generally designed, built. tested, and put one new product into production each month. I often made special products to or

[amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread brian_z111
Love it! http://en.wikipedia.org/wiki/The_Mythical_Man-Month Mind you, only an engineer could formularise personal interaction: (from the book?) Assigning more programmers to a project running behind schedule will make it even later, due to the time required for the new programmers to learn a

Re: [amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread bjagow
Red Brooks' "The Mythical Man-Month". - Original Message - From: "progster01" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 6:57 AM Subject: [amibroker] Re: Study Charting dare I say bugs... > --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: >> >>

[amibroker] Re: AmiBroker 5.12.0 BETA released

2008-06-21 Thread yund
TZ, That was amazingly fast response, thank you for the update and PSO sample. -Dave --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > Hello, > > It is fixed now in 5.12.1 BETA. I am sorry for trouble caused. > http://www.amibroker.com/devlog/2008/06/21/amibroke

Re: [amibroker] QuotesPlus database or QuotesPlus Data Plugin problem?

2008-06-21 Thread Steve Dugas
Hi - FWIW, my QP database in AB is a couple of years old or more, I use same plugin, and I have all 154 industries. For the heck of it, you might try unchecking "exclude symbols without quotes". You will get lots of unused tickers but then you can delete them with TJ's Cleanup script. Just a t

[amibroker] New file uploaded to amibroker

2008-06-21 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: /MCO.zip Uploaded by : fctonetti <[EMAIL PROTECTED]> Description : MCO v1.5 - A Multi CPU / Core Optimization Driver for AmiBroker allows yo

[amibroker] Particle Swarm Optimization (PSO) Links

2008-06-21 Thread progster01
I'm thrilled to see the addition of a Particle Swarm Optimization (PSO) demo to AmiBroker via the brand new optimizer plug-in capabilities of v5.12.0. Thank you, Tomasz, for keeping AB on the leading edge of TA products, and for doing it in a way that will allow others to "bolt on" in a most const

RE: [amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-21 Thread dingo
Won't work - its waaay too simple! 8-) d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of wjs45244 > Sent: Saturday, June 21, 2008 2:16 PM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: getting a list of watchlists that my

[amibroker] Re: getting a list of watchlists that my symbol belongs to

2008-06-21 Thread wjs45244
This will list the watchlists to a chart window: Title = "\nWatch List: "; for( i = 0; CategoryGetName( categoryWatchlist, i )!= ""; i++ ) { if( InWatchList( i ) ) Title = Title+ "\n " + CategoryGetName ( categoryWatchlist, i ); } --- In amibroker@yahoog

Re: [amibroker] Re: Set buyprice and sell price

2008-06-21 Thread Louis Préfontaine
Hi Graham, Thank you again for your help. I was not sure what to plot exactly and how to plot it, so I tried something else. I used 15-minute bars to set RSI so it would barely get over 70 so I would get a signal in 15-minute time frame and NOT in 5-minute timeframe. Here is my code: SetTradeD

Re: [amibroker] Re: Question re: Printing multiple charts on single page?

2008-06-21 Thread Tomasz Janeczko
5.02 as far as I remember. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "Buzz M. Ross" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 2:00 PM Subject: [amibroker] Re: Question re: Printing multiple charts on single page? > Tomasz, > > Thank you! Works

[amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread progster01
--- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wrote: > > ... adding 2 more developers for core development > would SLOW DOWN the development Depends what is meant by "core" (IMO). I think there are dozens of UI oriented (or other) "nice-to-haves" that would really save

[amibroker] Re: Study Charting dare I say bugs...

2008-06-21 Thread progster01
--- In amibroker@yahoogroups.com, "Paul Ho" <[EMAIL PROTECTED]> wrote: > > Tomasz is a one man band. So I can appreciate and am very happy with > the product direction he has taken. I agree with this. The capabilities of AB, and the speed at which it evolves are most impressive. At the same t

[amibroker] Re: Question re: Printing multiple charts on single page?

2008-06-21 Thread Buzz M. Ross
Tomasz, Thank you! Works like a charm. Just for reference, what is the earliest version that displays the 'chevron'? My version 4.98 doesn't show chevron, but I found the way to do the linking in this version. Buzz --- In amibroker@yahoogroups.com, "Tomasz Janeczko" <[EMAIL PROTECTED]> wr

[amibroker] QuotesPlus database or QuotesPlus Data Plugin problem?

2008-06-21 Thread peterbiro
Hi In the QP database the number of industry group indexes (the !IDxxx tickers) has changed from 150 to 154. Since then refreshing the available tickers in AmiBroker (Database Settings/Configure/Retrive)does not work properly. The new industry tickers do not appear in AmiBroker. If i create a ne

Re: [amibroker] How to set Email alert

2008-06-21 Thread Tomasz Janeczko
Gmail, as far as I know, requires SSL (secure) connection. The support for secure e-mail is coming soon. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "umrperumal" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 10:10 AM Subject: [amibroker] How to set Ema

[amibroker] How to set Email alert

2008-06-21 Thread umrperumal
Hi friends, I am not able to get email alerts function work.In AB, in Preferences--> Alerts window, I have entered the following info: 1) enabled all forms of alert (AA, commentary, indicators) 2) SMTP server name : smtp.gmail.com (This is the SMTP server name of google mail) 3) Authe

[amibroker] AmiBroker 5.12.1 BETA released

2008-06-21 Thread Tomasz Janeczko
Hello, AmiBroker 5.12.1 BETA released http://www.amibroker.com/devlog/2008/06/21/amibroker-5121-beta-released/ It is strongly recommended for all who installed 5.12.0 BETA, as it fixes the problem with walk-forward process stopping after first in-sample test. Best regards, Tomasz Janeczko amibr

Re: [amibroker] Re: AmiBroker 5.12.0 BETA released

2008-06-21 Thread Tomasz Janeczko
Hello, It is fixed now in 5.12.1 BETA. I am sorry for trouble caused. http://www.amibroker.com/devlog/2008/06/21/amibroker-5121-beta-released/ Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "Tomasz Janeczko" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 9

Re: [amibroker] Re: AmiBroker 5.12.0 BETA released

2008-06-21 Thread Tomasz Janeczko
Hello, You are correct. WF is stopping after first In-sample test in 5.12.0 BETA. Thank you for reporting this. It will be fixed in 15 minutes. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: "yund" <[EMAIL PROTECTED]> To: Sent: Saturday, June 21, 2008 3:49 AM Sub

Re: [amibroker] Re: AmiBroker 5.12.0 BETA released

2008-06-21 Thread Tomasz Janeczko
Hello, The optimizer plugin interface is for controlling optimization process alone. On the other hand, the access to trade list, is provided via custom backtester interface GetFirstTrade()/GetNextTrade() methods. http://www.amibroker.com/guide/a_custombacktest.html Best regards, Tomasz Janecz