[amibroker] Plot Text with Line Array.

2008-01-25 Thread Mohammed
Hi, Is it passable to plot text with Line Array, where x0 start and x1 end? I try it many times but I couldn't do. For example: under point x1 H and under point x1 HH. Regards.

[amibroker] Re: Automatic Assigning Industries to Tickers with downloaded Industries.js

2008-01-25 Thread mikeleekc
Here it is. I downloaded the script form the Amibroker site --Script Begin- /* ** AmiBroker/Win32 scripting Example ** ** File: Industries.js ** Created: Tomasz Janeczko, November 26th, 2000 ** Last updated: Tomasz Janeczko, December

[amibroker] Re: Q regarding removing succeeding signals from HighestSince or LowestSince

2008-01-25 Thread gp_sydney
The way I see it, there is a logical problem with trying to do this with purely array maths. I think it has to be done iteratively using a loop. The problem is that you want to create a buy array first, then use HighestSince(Buy, ...) as part of the definition of the sell array. What you really

RE: [amibroker] Re: Q regarding removing succeeding signals from HighestSince or LowestSince

2008-01-25 Thread Gordon Sutherland
I'll post them directly to your personal email address. You could alternatively check-out the AB Library files. Cheers, Gordon -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of janhausd Sent: Saturday, 26 January 2008 10:15 a.m. To:

Re: [amibroker] Re: How is a backwards reference handled if there is missing data?

2008-01-25 Thread Tomasz Janeczko
Pad and align is for Automatic Analysis (that's the setting of Automatic Analysis window). It does not affect indicators. Similar effect in indicators can be achieved using index as current symbol and Foreign() / SetForeign() function to get data aligned to index

[amibroker] Re: How is a backwards reference handled if there is missing data?

2008-01-25 Thread kmckiou
Tomasz, Perfect! Thanks for the quick response. - Kevin --- In amibroker@yahoogroups.com, Tomasz Janeczko [EMAIL PROTECTED] wrote: It depends if you have pad and align option turned ON or OFF. If it is OFF then n bars means n TRADING bars (with data). If it is ON then n bars means n bars

[amibroker] Re: How is a backwards reference handled if there is missing data?

2008-01-25 Thread kmckiou
Well, I thought it was perfect. I tried it and I must be doing something wrong. Here is the indicator code: Disp = Param(Displacement, -96, -672, 0, 1); nSamp = Param(Num of Samples, 1, 1, 100, 1); fData = Close; //initialize the filtered data with the close value for(i=1; inSamp; i++)

[amibroker] Feature request. Add a open source database native data driver to AmiBroker.

2008-01-25 Thread pierre8rou
Hello, I am looking for a AmiBroker database setting which I can write data into it. I have try to do a MySQL ODBC Data plugin, without succcess. http://pierre8r.blogspot.com/2008/01/how-to-for-odbcsql-data-plugin-via.html I have try to do a Microsoft Text Driver ODBC Data plugin, without

Re: [amibroker] How to assign one Applystop type with different values to Long and Shorts?

2008-01-25 Thread Tomasz Janeczko
Hello, ApplyStop( StopTypeNBar, stopTypeBars, IIF( Buy, 10, 5 ) ); Best regards, Tomasz Janeczko amibroker.com - Original Message - From: ChrisB [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, January 25, 2008 4:37 PM Subject: [amibroker] How to assign one Applystop type

[amibroker] How to assign one Applystop type with different values to Long and Shorts?

2008-01-25 Thread ChrisB
Hi I want to test Long and Short for one Currency. I want to use the same Applystop Type, but with different settings. How do I achieve this? Do I use A] Buy = (...) ; Sell = 0; Applystop(StopTypeNBar,StoptypeBars, *10)*; Short = (...) ; Cover = 0; Applystop(StopTypeNBar,StoptypeBars, *5);*

Re: [amibroker] Plot Text with Line Array.

2008-01-25 Thread wavemechanic
There are examples in the library. - Original Message - From: Mohammed [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, January 25, 2008 10:23 PM Subject: [amibroker] Plot Text with Line Array. Hi, Is it passable to plot text with Line Array, where x0 start and x1

Re: [amibroker] Re: Q regarding removing succeeding signals from HighestSince or LowestSince

2008-01-25 Thread Tomasz Janeczko
Check your inbox - attachments *are* distributed via e-mail. Only Yahoo Web interface does not have them. Best regards, Tomasz Janeczko amibroker.com - Original Message - From: janhausd [EMAIL PROTECTED] To: amibroker@yahoogroups.com Sent: Friday, January 25, 2008 10:15 PM Subject:

[amibroker] Re: Q regarding removing succeeding signals from HighestSince or LowestSince

2008-01-25 Thread janhausd
Hi Gordon, Do you suppose you can post those files in the Files folder or someplace? The attachments aren't showing up in the post :( I just see: Attachment(not stored) Chandelier.dll --- In amibroker@yahoogroups.com, Gordon Sutherland [EMAIL PROTECTED] wrote: Hi Larry, I believe

[amibroker] click and velocity

2008-01-25 Thread trikerito
Hi. normally i use tick compression bars. i'm do some searching, but dont retrieve response for: -i'd like that Ami play a sound (click, blip, bell...wahtever) everytime a tick-compression bar is finised (orfilled, or when star a new bar), cause i'd like to aply my discretionary sistem on

[amibroker] Re: Q regarding removing succeeding signals from HighestSince or LowestSince

2008-01-25 Thread onelkm
I have struggled with the same issue can someone help - is there a solution? Larry --- In amibroker@yahoogroups.com, janhausd [EMAIL PROTECTED] wrote: Hi, I did some searching in the posts, and it looks like many people have asked for methods to remove the extraneous signals from

[amibroker] Re: Feature request. Add a open source database native data driver to AmiBroker.

2008-01-25 Thread bilbo0211
Hello, You left out http://www.hdfgroup.com/products/hdf5/whatishdf5.html It is not a relational database so it doesn't have that overhead. It is specifically designed for fast storage and retrieval (as much as 100 times faster than SQL) of very large datasets. Bill --- In

[amibroker] Re: Automatic Assigning Industries to Tickers with downloaded Industries.js

2008-01-25 Thread areehoi
No Script shown. Need to see it. You may also try doing with ASCII Import. Dick H. --- In amibroker@yahoogroups.com, mikeleekc [EMAIL PROTECTED] wrote: Hi, I tried to assign industry to the tickers using the above mentioned script which I downloaded from the Amibroker website. I ran it