[amibroker] ATR Trading System

2007-05-28 Thread Louis Guy Rink
We have not been able to modify the following formula in order to optimize the multiplier factor (k) and the period (n). Can anyone help us to modify this formula so that it will optimize both factors? _SECTION_BEGIN("ATR Trading System"); /*Writed & composed by Tudor Marcelin - Art Invest*/ k=1

Re: [amibroker] ATR Trading System

2006-07-13 Thread Graham
e 1st line.   -- Terry -Original Message- From: amibroker@yahoogroups.com [mailto:amibroker@yahoogroups.com] On Behalf Of M. Smith Sent: Thursday, July 13, 2006 09:30 To: amibroker@yahoogroups.com Subject: Re: [amibroker] ATR Trading System   > Title=EncodeColor (colorBlue)+

RE: [amibroker] ATR Trading System

2006-07-13 Thread Terry
On Behalf Of M. Smith Sent: Thursday, July 13, 2006 09:30 To: amibroker@yahoogroups.com Subject: Re: [amibroker] ATR Trading System   > Title=EncodeColor(colorBlue)+"Experiment"+EncodeColor(colorBlack)+ " > Open:"+O+" High:"+H+" Low:"+L+" C

Re: [amibroker] ATR Trading System

2006-07-13 Thread M. Smith
any buy signals (Use R= 999; and S = -999;)rather than R[0] = Close[0] ..- Original Message - From: "dom1_1998" <[EMAIL PROTECTED]net>To: <[EMAIL PROTECTED]ps.com>Sent: Saturday, July 01, 2006 7:54 AMSubject: [amibroker] ATR Trading System> I&#x

Re: [amibroker] ATR Trading System

2006-07-02 Thread Amon Ra
ATR Trading System is in Amibroker - AFL Library. See all commentaries posted there!Dominick <[EMAIL PROTECTED]> wrote: Thanks ARA. and all others who responded. Sorry for the late reply. Had to attend a graduation party. Your attachment works great. I don't unde

Re: [amibroker] ATR Trading System

2006-07-01 Thread Dominick
Thanks ARA. and all others who responded. Sorry for the late reply. Had to attend a graduation party. Your attachment works great. I don't understand how you didn't get any results. I used the Scan feature and the results showed stocks that penetrated the upper ATR as a buy and those below a

Re: [amibroker] ATR Trading System

2006-07-01 Thread Ara Kaloustian
Terry ...right ...   The initialization should be R=S=Close;   Updated code attached. - Original Message - From: Terry To: amibroker@yahoogroups.com Sent: Saturday, July 01, 2006 3:54 PM Subject: RE: [amibroker] ATR Trading System Your code doesn&#

Re: [amibroker] ATR Trading System

2006-07-01 Thread Graham
n Sent: Saturday, July 01, 2006 13:15 To: amibroker@yahoogroups.com Subject: Re: [amibroker] ATR Trading System   Dom,   I had same problem ...   I defined a few variables before loop and that takes care of errors but got zero hits.   I also changed some statements in the loop to oper

RE: [amibroker] ATR Trading System

2006-07-01 Thread Terry
hoogroups.com Subject: Re: [amibroker] ATR Trading System   Dom,   I had same problem ...   I defined a few variables before loop and that takes care of errors but got zero hits.   I also changed some statements in the loop to operate on individual cells, since you are addressing individu

Re: [amibroker] ATR Trading System

2006-07-01 Thread Ara Kaloustian
results. All new code is marked as such - Original Message - From: "Dominick" <[EMAIL PROTECTED]> To: Sent: Saturday, July 01, 2006 10:24 AM Subject: Re: [amibroker] ATR Trading System > Hi Ara: > > I tried your suggestion but keep getting stopped at the

Re: [amibroker] ATR Trading System

2006-07-01 Thread Bill Schmidt
Other than a couple of line wrap errors, it seems to work fine. On Sat, 01 Jul 2006 13:24:19 -0400, Dominick <[EMAIL PROTECTED]> wrote: > Hi Ara: > > I tried your suggestion but keep getting stopped at the "Buy = > ExRem(Buy, Sell); //Elimina semnalele buy consecutive" > Maybe I wasn't doing it r

Re: [amibroker] ATR Trading System

2006-07-01 Thread Dominick
Hi Ara: I tried your suggestion but keep getting stopped at the "Buy = ExRem(Buy, Sell); //Elimina semnalele buy consecutive" Maybe I wasn't doing it right. Could you run this scan and see if it happens to you? If you get it working please show me what you did. TIA, dom

Re: [amibroker] ATR Trading System

2006-07-01 Thread Ara Kaloustian
1_1998" <[EMAIL PROTECTED]> To: Sent: Saturday, July 01, 2006 7:54 AM Subject: [amibroker] ATR Trading System > I'm trying scan using the ATR Trading system downloaded from the library > It prints about 12 results then I get an error msg. stating the var buy > used without

[amibroker] ATR Trading System

2006-07-01 Thread dom1_1998
I'm trying scan using the ATR Trading system downloaded from the library It prints about 12 results then I get an error msg. stating the var buy used without having been initialized. I get no errors using the AFT check. Enclosed is the code: /*Writed & composed by Tudor Marcelin - Art Invest