Re: [amibroker] Re: Help with latest IQFeed Client

2006-08-06 Thread Tomasz Janeczko
Hello, I wrote already that I will revisit the IQFeed plugin because they released new version of API that they say fixes a lot of old problems and I will need to work on it anyway. Then I will take a look at the other problems you have reported. Best regards, Tomasz Janeczko amibroker.com

RE: [amibroker] Bargraph display of timer to end of bar

2006-08-06 Thread J. Biran
I thought I will contribute something to this group by publishinga little utility I developed to visually see the end of barapproaching in a thermometer type display using the empty spaceat the right side of the chart. This is particularly useful to the WoodiesCCI group of people,and fits

RE: [amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread dingo
Well, I asked him to post that - aren't you gonna thank ME? 8-) d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Joe Landry > Sent: Sunday, August 06, 2006 10:40 PM > To: amibroker@yahoogroups.com > Subject: Re: [amibroker] Re: AmiBroke

Re: [amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread Joe Landry
Thanks Mike.But then it could have been Laura who was writing. (g) This was definitely the kick start I needed and I got a small demo going. Didn't read your note carefully enough and had a miscue with the connection name, but once I got past that it works fine. Best regards Joe ---

[amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread mikelaurataylor
Yes, its Mike writing. If Taylor (3 yrs old) was writing then I'd really be impressed. Mike --- In amibroker@yahoogroups.com, "Joe Landry" <[EMAIL PROTECTED]> wrote: > > Bless you mikelaurataylor, for sharing this. > I'm gong to use an Access table to track holdings with columns > holding tic

Re: [amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread Joe Landry
Bless you mikelaurataylor, for sharing this. I'm gong to use an Access table to track holdings with columns holding ticker, no of shares, divd, date split (wow it gets complicated) in order to generate a weighted equity curve. Best regards JOE P/S. Is it Mike who's writing? - Original

[amibroker] Re: Livecharts

2006-08-06 Thread deherl
Thanx. I can get it to work as well with all the "bugs" that you mention. The sub with Livecharts eliminated this problem until recently, so I'm assuming Esignal is up to it's usual ways. --- In amibroker@yahoogroups.com, "dingo" <[EMAIL PROTECTED]> wrote: > > It still works - sorta. > > I ge

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
Ok, I see.  Thanks   d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz JaneczkoSent: Sunday, August 06, 2006 5:31 PMTo: amibroker@yahoogroups.comSubject: Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value? Yes, you

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
Yes, you can write an ActiveX in VB that exposes a method to retrieve any "dynamic" values you need. Let's assume you want somethign simple so we won't invent "optimum" methods of sharing data. Instead we will rely on registry. So ActiveXObject would expose two methods StoreValue and ReadV

RE: [amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread dingo
Thanks! d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of mikelaurataylor > Sent: Sunday, August 06, 2006 3:47 PM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: AmiBroker 4.84.0 BETA released > > The code to hook up to the Acc

[amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread mikelaurataylor
The code to hook up to the Access database is below.Before you can use it there are two things you need to do. 1. You need to have an access database with the data you want in it (obviously).In this case I have a database called "earnings" with a table called "Selected" in it that has 1 re

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
Hello,   Frankly speaking I did not read any single book on JScript or _vbscript_ - did not have time for that :-) so I am afraid don't have any recommendations for you. Basically all "mainstream" programming languages are similar so once you get good handle of one you can program more or l

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
So you're saying that an activex could be written that could do the things Mark wanted to do?  In VB?  If not what language would be required, C?    d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz JaneczkoSent: Sunday, August 06, 2006 1:09 PMTo

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Don Lindberg
 Tomasz, Can you recommend a good book for learning how to write JScript for someone who is not a programmer?  I would like to be able to do some of the things you mention. Thanks for any suggestions.   Don Lindberg   ---Original Message---   From: Tomasz Janeczko Date: 08/06/06 10

RE: [amibroker] max stops and looping

2006-08-06 Thread Terry
You are mixing loop code with ApplyStop (array code). If your loop does what you wish, then just put this line BEFORE the loop (not inside the loop) and run an optimize: Maxstop = Optimize( "maxstop", 10, 2, 30, 1); -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMA

[amibroker] max stops and looping

2006-08-06 Thread matrix10014
Hi, I am coding a max stop loss in my code which involves looping I coded.. - - if (Low[i]<=(1-Maxstop*.01)*priceatbuy) { exit = 4; SellPrice[i]=Min(Open[i],(1-Maxstop*.01)*priceatbuy); //My attem

[amibroker] TRENDLINE BREAK ALERTS

2006-08-06 Thread osgem_2006
i want to write formula for alert of trendline break on an indicator. I wrote the following // Trendline Alerts Sell = Cross( CCI 14, Study( "SU" ),CCI 14,GetChartID()); when i tried to scan a symbol I get syntax error , error 31,syntax error, expecting '(' please help me to write the correct c

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
Hello,   I am always amused by the fact that people are so afraid of things that are pretty easy in fact provided that one just gives it a try.   If one knows how to write JScript, it is perfectly capable of writing ActiveX or even DLL plugin.   Writing ActiveX is covered in detail step-by

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
Oh, btw AutoIt can also send text via windows messages.    d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz JaneczkoSent: Sunday, August 06, 2006 12:37 PMTo: amibroker@yahoogroups.comSubject: Re: [amibroker] OLE automation: How to set Param

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
I was trying to convey the message that if you don't know how to write a dll or an ActiveX then you might as well try to fly by flapping your arms.  I guess my attempt failed    d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz JaneczkoSent:

[amibroker] Re: Livecharts

2006-08-06 Thread global_investor
I do not know whether something has changed during the last years. I looked at Livecharts (I think) 4 years ago. Back then Livecharts was intended by Quote.com a service where you could run a Java applet to display charts in realtime. If I still remember correctly, the Java applet did not receiv

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
Sending keystrokes would not be any faster than file based data transfer but surely less reliable.   If you are after BT/Explore just modify the FORMULA itself (set up some markers so you can easily parse the file, this technique is used by IO, as far as I know). It is easy because AmIBroke

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
My answer was not supposed to be funny. I pointed out real possibilities/solutions that are far better/faster/more robust than sending keystrokes. Best regards,Tomasz Janeczkoamibroker.com - Original Message - From: dingo To: amibroker@yahoogroups.com Sent: Sunday, Aug

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
boo hiss!  you should take a close look at autoit - it's very useful for mouse clicks, lookinig for a particular window, etc. You don't have to use the activex.   d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mark HSent: Sunday, August 06, 2006 12:20

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Mark H
Thanks for all these ideas! (I haven't tried to flap my arms yet :-) The AutoIT/ActiveX way takes more time since I am not familiar with VB. A DLL plugin or ODBC is overkill for my purpose. So I just used a plain file to transfer the parameters. To speed things up, I use static variables i

RE: [amibroker] Tradestation Code converted to AmiBroker

2006-08-06 Thread Steven Perrott
Wrzec,   For AmiBroker stuff go to http://finance.groups.yahoo.com/group/amibroker and look for a guy named Graham who goes by the name Kavemanperth. He may charge you a bit but not much to tidy your code up. He is a very helpful and diligent guy.   You can also post your question

RE: [amibroker] Re: OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
Details, details! d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of scourt2000 > Sent: Sunday, August 06, 2006 10:59 AM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: OLE automation: How to set > Param/ParamStr/ParamDate va

[amibroker] Re: OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread scourt2000
That website doesn't look right. This looks like the correct link: http://www.autoitscript.com/autoit3/ --- In amibroker@yahoogroups.com, "dingo" <[EMAIL PROTECTED]> wrote: > > The way you describe is not that bad actually. > > A more efficient way would be to use "AutoIT" www.autoit.com

RE: [amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread dingo
How about showing the code you use to "hook up" to the Access DB? d > -Original Message- > From: amibroker@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of mikelaurataylor > Sent: Sunday, August 06, 2006 10:45 AM > To: amibroker@yahoogroups.com > Subject: [amibroker] Re: AmiBrok

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
you could also fly if you flap your arms fast enough..   d From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tomasz JaneczkoSent: Sunday, August 06, 2006 10:46 AMTo: amibroker@yahoogroups.comSubject: Re: [amibroker] OLE automation: How to set Param/Pa

[amibroker] Re: AmiBroker 4.84.0 BETA released

2006-08-06 Thread mikelaurataylor
THanks for the continual flow of new versions! For what it's worth I have managed to do 2 things with recent versions. First, with the realtime tabbed pain I managed to work most of last week without loading Tradestation, which I'm trying to get away from. The multiple tabs plus an AA Explore

Re: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread Tomasz Janeczko
Or... you can write a DLL plugin. Or... write an Active X Or... store your "dynamic" values in database and access them via ODBC plugin  Best regards,Tomasz Janeczkoamibroker.com - Original Message - From: dingo To: amibroker@yahoogroups.com Sent: Sunday, August 06, 20

[amibroker] Re: Help with latest IQFeed Client

2006-08-06 Thread mikelaurataylor
For what it's worth, I was the user who reported the "data mixup" w/ the IQFEED earlier in the spring. When running IQFEED just as a realtime data source it seemed to work ok, but when running it along with an AA data got mixed up.I was able to repeat this problem multiple times. I reported

RE: [amibroker] OLE automation: How to set Param/ParamStr/ParamDate value?

2006-08-06 Thread dingo
The way you describe is not that bad actually.   A more efficient way would be to use "AutoIT"  www.autoit.com  to click the buttons for you and enter the text.  It has an activeX component as well as a dll that you could use within your script or you could call an exe that it can build.

[amibroker] Re: Help with latest IQFeed Client

2006-08-06 Thread global_investor
TJ, first of all I want to thank you - wholeheartedly - for your answer. I apologize if my wording was too offensive for you, but English is not my native language, so it's often difficult for me to express myself really well. Please note that regarding the mentioned bug, I was never the type of c

[amibroker] AmiBroker 4.84.0 BETA released

2006-08-06 Thread Tomasz Janeczko
Hello, AmiBroker 4.84.0 BETA is released now. http://www.amibroker.com/devlog/2006/08/06/amibroker-4840-beta-relased/ Best regards, Tomasz Janeczko amibroker.com Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to

[amibroker] Re: Any Help Please error in code

2006-08-06 Thread Hetal
Ya i know i read the documents but my afl just dont have 1 single foreign i have nearly 12 foreigns . These are for the calls & puts rt data of Nse 50 Index ( Nse 50). So i have 6 calls and 6 puts in one single afl all with the help of foreign i dono how to to use SET with multiple foreigns as

Re: [amibroker] Any Help Please error in code

2006-08-06 Thread Mark H
For this kind of error, the best way to resolve it is to read the document of that function. Here it is: SYNTAX TimeFrameGetPrice( pricefield, interval, shift = 0, mode = expandFirst ) RETURNS ARRAY FUNCTION The TimeFrameGetPrice - retrieves OH

[amibroker] Any Help Please error in code

2006-08-06 Thread Hetal
Hello Friends, I get an error5 Argument #1 has incorrect type (The function expects diferent argument here) Dono whether i am doing this is right or dono where i am going wrong. What i want is in intraday mode i am tryinmg to pull full days todays volume and comparing it with prv days volume To

[amibroker] Re: Time display

2006-08-06 Thread Hetal
Dear SIVA, It seems u are from India. I am also from India trading indian markets. Can u give more details of the plugin for Ami for Indian Market. Where can i buy from any website address or email. You can if u want write me directly to my email>> hetal_mba at yahoo.com. Thanks in advance

Re: [amibroker] Re: Help with latest IQFeed Client

2006-08-06 Thread Rakesh Sahgal
I know this is in the domain of your business/corporate policy. However allow me to submit with all humility that an alternative would be that you (a) charge an amount that you consider fair and equitable for providing data plug-ins and (b) only support those data sources that in your considered