Re: [amibroker] Example code for using Say()

2006-12-27 Thread Ton Sieverding
I have three problems with this code Herman. My first problem is that it doesn't give me a Buy or Sell sound. So for me it does not work properly. Secondly, the variable Text will create an error in case there is no Buy or Sell because it has not been initialized. I would start the code with

[amibroker] How to use Window tabs...

2006-12-27 Thread Herman
BlankI am trying to catch up and have been looking for info on how to use the Upper Window tabs, is there is tutorial anywhere? How to rename them? What kind of settings go with and are saved for each window? Are they save uniquely under there own name? Are they intended for specific tickers or

Re: [amibroker] How to use Window tabs...

2006-12-27 Thread Ton Sieverding
See AmiBroker 4_89_0 beta Read Me.htm and do a Find Tab ... Ton. - Original Message - From: Herman To: AmiBroker Sent: Wednesday, December 27, 2006 9:59 AM Subject: [amibroker] How to use Window tabs... I am trying to catch up and have been looking for info on how to

RE: [amibroker] Symbols

2006-12-27 Thread Terry
AAPL works fine as AAPL. Make sure it's not checked as Local Database only (Symbol-Information). Throttling: IB won't let you load too much data too fast for fear of overloading their servers. If you want more data faster you have to pay eSignal or DTN or similar. -- Terry -Original

[amibroker] Ft Monitor

2006-12-27 Thread richardlboroff
Hello Everyone, I hope you had a wonderful Holiday Season and have a Happy New Year. There is a great line-up of speakers for you at the Second AmiBroker Houston Conference in February. Howard Bandy will talk about Trading System Validation and Jeff Parent will discuss The Process of

RE: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Terry
Intraday data is NOT saved in Mixed EOD database. It simply allows updating of the current day's value by every new piece of data received...and it only works with certain data suppliers. If you want both you can have a minute database (or whatever timeframe) and simply view in a Daily time

Re: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Tomasz Janeczko
Intraday data is NOT saved in Mixed EOD database. Incorrect. As far as mixed EOD/intraday mode is considered, intraday data ARE saved together with EOD data. This mode allows 1-minute (and any higher interval) charts (120+ days) plus long (9 years) EOD histories from the same database using

RE: [amibroker] Example code for using Say()

2006-12-27 Thread AmibrokerFan
Anyone know how to get it to say the stock symbol name also. Instead of Say (Buy) I like it to Say (Buy GOOG);. Mike http://www.amibrokerfan.com http://www.amibrokerfan.com/ _ From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ton Sieverding Sent: Wednesday,

[amibroker] Re: AmiBroker 4.89.0 BETA released (Margin)

2006-12-27 Thread pachris79
--- In amibroker@yahoogroups.com, roarke555 [EMAIL PROTECTED] wrote: Hello Tomas.. Thanks for new release.. I have only one question: Do you'll support margin in the new Account manager ? Thank you very much Roarke --- In amibroker@yahoogroups.com, Tomasz Janeczko groups@ wrote:

RE: [amibroker] Example code for using Say()

2006-12-27 Thread Herman
You can try: Say(Buy +NumToStr(100,1.0)+ Shares of +Name()); or Say(Buy +NumToStr(100,1.0)+ Shares of +Apple); of course you may have to add earlier discussed code to prevent repetition. herman -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf

RE: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Terry
Tomasz, Thanks. However, I was referring to a daily database where there is no intraday data at all. If you had a minute database, then what is the purpose of using Mixed EOD/intraday? You can simply click on daily timeframe, right? I must be missing something here. -- Terry -Original

Re: [amibroker] Pressure Indicator

2006-12-27 Thread James
I too would like to evaluate trades on the bid/ask. I've never used Quotetracker, is this the same tool that used to be Medved Quotetracker, a 3rd party freebie from the IB website? I have tried Market Delta which I previously mentioned on this list when we were discussing volume. HOWEVER, if

[amibroker] Please help me with this java script

2006-12-27 Thread gunovanengel
Hi, I am trying to change the dataSource with the js script below. I keep getting the error Object expected code 800a138f What am I doing wrong Regards Guno AB = CreateObject(Broker.Application); sts = AB.Stocks(); Qty = sts.Count; for( i = Qty - 1; i = 0; i = i - 1 ) { sts.DataSource = 0; }

Re: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Graham
1 minute data for normal equity market would use approx 100,000 bars per year (~400,000 for forex) This would not allow much history to reach limit and make it very slow running. -- Cheers Graham AB-Write Professional AFL Writing Service Yes, I write AFL code to your requirements

Re: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Tomasz Janeczko
Hello, The point is to have long EOD histories AND intraday data. Of course AmiBroker will compress intraday to daily, but to have 9 years of daily charts you would need to have nearly one million of bars. With mixed mode you have 120 days intraday and 9 years of eod in the same database with

Re: [amibroker] Please help me with this java script

2006-12-27 Thread Tomasz Janeczko
In external JS file use new ActiveXObject instead of CreateObject(). Best regards, Tomasz Janeczko amibroker.com - Original Message - From: gunovanengel [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Wednesday, December 27, 2006 9:59 PM Subject: [amibroker] Please help me with

RE: [amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Terry
Well thought out, as always :-) -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz Janeczko Sent: Wednesday, December 27, 2006 14:21 To: amibroker@yahoogroups.com Subject: Re: [amibroker] Re: Which Folders Are Shared By Default

[amibroker] Re: Please help me with this java script

2006-12-27 Thread gunovanengel
Hi Tomasz, I still get an error AB = new ActiveXObject(Broker.Application); sts = AB.Stocks(); Qty = sts.Count; for( i = Qty - 1; i = 0; i = i - 1 ) { sts.DataSource = 0; } --- In amibroker@yahoogroups.com, Tomasz Janeczko [EMAIL PROTECTED] wrote: In external JS file use new

[amibroker] Re: Please help me with this java script

2006-12-27 Thread gunovanengel
problem solved --- In amibroker@yahoogroups.com, gunovanengel [EMAIL PROTECTED] wrote: Hi Tomasz, I still get an error AB = new ActiveXObject(Broker.Application); sts = AB.Stocks(); Qty = sts.Count; for( i = Qty - 1; i = 0; i = i - 1 ) { sts.DataSource = 0; } --- In

[amibroker] convert binary to decimal?

2006-12-27 Thread danandsara95
Anyone know how to convert a binary number to decimal in AFL (i.e. 110 binary == 6 decimal) Thanks, Dan

[amibroker] Re: Which Folders Are Shared By Default Between Multiple AB Installations

2006-12-27 Thread Lester Vanhoff
TJ: With mixed mode you have 120 days intraday and 9 years of eod in the same database with 10 times less bars. I have around 4000 eod symbols (all Canadian stocks) that's why I'm looking for a script to clean out old RT data from the mixed database as I'm not committed to the idea of having

[amibroker] Exploration Question

2006-12-27 Thread troll
I've used Amibroker for about 3 years and written countless explorations. When I double click on symbol in exploration pane chosen symbol is displayed and I can easily switch displayed chart by double clicking any symbol I choose in exploration pane. Today however that doesn't work for one

[amibroker] Re: not sure what error i am doing. cannot see arrows on backtesting

2006-12-27 Thread eodeen
Hi, I had the same problem - until I discovered that there is a show trading arrows option - right click inside chart window - select parameters - axes grid tab - Misc. show trading arrows. Best Regards Erik Odeen --- In amibroker@yahoogroups.com, murthysuresh [EMAIL PROTECTED] wrote:

RE: [amibroker] Exploration Question

2006-12-27 Thread Terry
If you use no default columns in your Explore, but then add your own AddColumn(Name()...) for symbol, it does not double-click. -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of troll Sent: Wednesday, December 27, 2006 20:06 To:

[amibroker] Re: What am i not getting here, saving 'layouts' does not save structure??

2006-12-27 Thread Homar Simpson
Nope. Does not save the entire contents of the 'page'. Seems to save only the window position. Saving the exact layout including all studies would seem to be a basic function of software such as this. Why am I having to struggle with it? Design flaw or user error? Testing by simply

[amibroker] Re: What am i not getting here, saving 'layouts' does not save structure??

2006-12-27 Thread Homar Simpson
Re: What am i not getting here, saving 'layouts' does not save structure?? Nope. Does not save the entire contents of the 'page'. Seems to save only the window position. Saving the exact layout including all studies would seem to be a basic function of software such as this. Why am I having to

[amibroker] Re: Exploration Question

2006-12-27 Thread Lester Vanhoff
DH: I can easily switch displayed chart by double clicking any symbol I choose in exploration pane ... In case you are not aware of this, starting from v4.88.0 you can also use arrow keys instead of the mouse to scroll through the charts. This does not address your problem but I thought you