[amibroker] Re: Plot of MA Loop

2006-05-15 Thread peterjldyke
Thanks Steve, your code for the MA loop is the exact solution I have searched for. I shall now try to do an Exploration. Thanks again for your help. Peter --- In amibroker@yahoogroups.com, "Steve Dugas" <[EMAIL PROTECTED]> wrote: > > Hi Peter, > > Sorry about that, I thought your question wa

[amibroker] Re: ThCSV Plug (was import data from AAII into Amibroker)

2006-05-15 Thread vlanschot
Guno, As I stated before, initially it was created for my own use, but it is available (as far as I know) for other users as well. You may have to pay a small fee to TJ. Again, just ask. PS --- In amibroker@yahoogroups.com, "gunovanengel" <[EMAIL PROTECTED]> wrote: > > Hi, > > Is this ThCS

[amibroker] Re: Timid Bold or Profit Risk coding

2006-05-15 Thread michael_shane_baker
Thanks for your reply. The method is that you set your initial risk on your base capital...as an example your risk may be 1% of the base capital of $100k for each trade. Once the portfolio is in profit then you risk a percentage of the profit in addition to the base capital risk for example

[amibroker] Re: exploration: displya buy and sell price on same row

2006-05-15 Thread elstephel
Consider using the ADDTEXTCOLUMN() function. something like this: mybuyprice = ...// your code here mysellprice= ...// your code here text = "buy: "+mybuyprice+" sell: "+mysellprice; ADDTEXTCOLUMN(text, "Buy/Sell",1.2); Filter = ...//your filter criteria text concatenates the 2 prices into a s

[amibroker] ALERTIF EXEC

2006-05-15 Thread martinod
Hello,   Does anyone knows how to transfer command line parameters with  Alertif / Exec :   AlertIf(1,"exec C:\Program Files\Amibroker\Formula\custom\MYPROGRAM.EXE,PARAM1","MYTEXT");     I tried that based on ShellExecute syntax, but did not succeed.   Thanks for your help,   R

[amibroker] linear regression oscillator

2006-05-15 Thread agauthe
Where can I find the code for linear regression oscillator ? Thanks for your help Alain Please note that this group is for discussion between users only. To get support from AmiBroker please send an e-mail directly to SUPPORT {at} amibroker.com For other support material please c

[amibroker] Re: Batman periodicity question

2006-05-15 Thread Fred
AA / Settings / General Tab / Periodicity --- In amibroker@yahoogroups.com, "brpnw1" <[EMAIL PROTECTED]> wrote: > > Hi Fred, > > I've searched all the documentation for AB and I don't see code that I > can put in the "settings" file that will control periodicity. Or am I > not looking in

[amibroker] TimeFrameGetPrice

2006-05-15 Thread BG
Hi, I try to use this function to get Open for current day and Close for previous one : PrevClose = TimeFrameGetPrice("C", inDaily, -1) ; OpenDay = TimeFrameGetPrice("0", inDaily, 0) ; I'm working in 1 minute frames, with Interactive Brokers. "PrevClose" seems ok, but "OpenDay" returns the open

[amibroker] Re: Batman periodicity question

2006-05-15 Thread brpnw1
I thought my original question was clear but perhaps not, so I will restate it again in detail, for clarity -- I am using Batman. I want to run two different jobs within the same batch. One job has a periodicity of "daily." The other job has a periodicity of "weekly." I understand that I can

[amibroker] Re: Batman periodicity question

2006-05-15 Thread brpnw1
I thought my original question was clear but perhaps not, so I will restate it again in detail, for clarity -- I am using Batman. I want to run two different jobs within the same batch. One job has a periodicity of "daily." The other job has a periodicity of "weekly." I understand that I can

[amibroker] Re: Batman periodicity question

2006-05-15 Thread Fred
I thought I was clear in my reply but I'll spell it out a little further if need be. To the best of my knowledge there is no way to do this in AFL ... My first reply was to use: AA / Settings / General Tab / Periodicity and set the periodicity to whatever you like. Once set there you can s

[amibroker] Re: Accessing & Converting TradeStation Historical Intraday Data

2006-05-15 Thread dirk schreiber
  no answers so far, so i will try my luck again:   is there anyone on this list who knows how TradeStation stores its historical intraday data on a user's PC ? i am wondering if it is possible to access this data, convert it and then import it into AmiBroker.   - Original Message -

[amibroker] Re: linear regression oscillator

2006-05-15 Thread dalengo
http://www.amibroker.com/library/detail.php?id=344 for projection oscillator --- In amibroker@yahoogroups.com, "agauthe" <[EMAIL PROTECTED]> wrote: > > > Where can I find the code for linear regression oscillator ? > > Thanks for your help > > Alain > Please note that this group is

[amibroker] Bug w/ IQFEED and maybe Win64

2006-05-15 Thread mikelaurataylor
I'm using the 32 bit AmiBroker w/ the lastest IQFEED.  I've been going back and forth w/ tech support for about 2 weeks on this issue and while they've been helpful havn't solved the problem yet so I thought I'd see if anyone else has this issue. I am running an automated scan on a minute ba

[amibroker] Re: Batman periodicity question

2006-05-15 Thread brpnw1
Hi Fred, I didn't realize till now that I could save ABS files directly from AA-Settings. Never needed to do that till now. Thanks for the heads- up. BTW, your attachments never came through in order for me to view them within this Yahoo message board. I do not receive email directly from th

[amibroker] Highest Value Since Signal

2006-05-15 Thread C Alvarez
I am looking to see what the highest close has been since a given signal to the present. I want to do this in an Exploration and not a Backtest because there may be multiple signals and I want the data for each signal. Any suggestions? Thanks, Cey Please note that this group is fo

[amibroker] Re: Batman periodicity question

2006-05-15 Thread Fred
If you want to get attachments you need to get posts via email ... --- In amibroker@yahoogroups.com, "brpnw1" <[EMAIL PROTECTED]> wrote: > > Hi Fred, > > I didn't realize till now that I could save ABS files directly from > AA-Settings. Never needed to do that till now. Thanks for the heads-

Re: [amibroker] Highest Value Since Signal

2006-05-15 Thread Graham
The simplest is to use HighestSince function -- Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to your requirements http://e-wire.net.au/~eb_kavan/ab_write.htm On 5/16/06, C Alvarez <[EMAIL PROTECTED]> wrote: > I am looking to see what the highest close has

[amibroker] 100 tick chart

2006-05-15 Thread gnader_2000
anyone know why my AB just will not plot a 100 tick bar chart. My feed is Interactive Brokers, I have the database set to ticks, and I have several tick charts set up for this database. None of them will plot properly. For example the 100 tick bar chart will plot perhapse 5 bars for the day! I

RE: [amibroker] Highest Value Since Signal

2006-05-15 Thread Terry
Signal = your signal; X = HHV(C,BarsSince(Signal)); AddColumn(X,"Highest Close since Signal"); -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of C Alvarez Sent: Monday, May 15, 2006 14:33 To: amibroker@yahoogroups.com Subject: [amibroker

[amibroker] AmiQuote Server F and G

2006-05-15 Thread intermilan04
Hi all, I've been running AmiQuote and I started getting the following error since last week. "The server name or address could not be resolved" Here is my setup: - AmiBroker 4.80.1 - AmiQuote 1.81 - Yahoo Historical Server EOD Quotes - Auto-rotate servers B-L I did not get the error above ev

Re: [amibroker] 100 tick chart

2006-05-15 Thread Graham
I understand IB feed is 1 second snapshot time, not tick feed -- Cheers Graham AB-Write >< Professional AFL Writing Service Yes, I write AFL code to your requirements http://e-wire.net.au/~eb_kavan/ab_write.htm On 5/16/06, gnader_2000 <[EMAIL PROTECTED]> wrote: > anyone know why my AB just

[amibroker] Re: 100 tick chart

2006-05-15 Thread gnader_2000
thanks for the response. It's odd that we would have an option to download IB data in ticks, but only have 1 second snapshots avalibale? Also the AFL code allows us to designate being able to access tick data. Maybe I'm missing somthing, but it seems to me that if we can set the database to

[amibroker] Re: AmiQuote Server F and G

2006-05-15 Thread intermilan04
Hi all, I was able to solve the issue myself.  I went in and modified the binary of AmiQuote so it only goes to the working servers. Regards, intermilan04 --- In amibroker@yahoogroups.com, "intermilan04" <[EMAIL PROTECTED]> wrote: > > Hi all, > > I've been running AmiQuote and I started get

Re: [amibroker] Re: Accessing & Converting TradeStation Historical Intraday Data

2006-05-15 Thread Sidney Kaiser
In TS with the desired data up in a chart open the data window and save the data.  From there you can import into AB as ASCII data. Siddirk schreiber <[EMAIL PROTECTED]> wrote:   no answers so far, so i will try my luck again:   is there anyone on this list who knows how TradeStatio

RE: [amibroker] Highest Value Since Signal

2006-05-15 Thread Terry
I like Graham's solution better! >The simplest is to use HighestSince function -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Terry Sent: Monday, May 15, 2006 16:43 To: amibroker@yahoogroups.com Subject: RE: [amibroker] Highest Value

[amibroker] Giant Candlesticks

2006-05-15 Thread liberte721
Here is something fun (and maybe educational) that I wrote last night.  It draws giant candlesticks containing normal candlesticks.  If you zoom out enough, the giant candlesticks look pretty normal. One thing I don't quite understand yet is what happens when you scroll the screen left and r