[amibroker] Re: Timeframeset question

2008-07-03 Thread blinddoekje
available today. * - Original Message - *From:* Louis PrÃ(c)fontaine rockprog80@ *To:* amibroker@yahoogroups.com amibroker% 40yahoogroups.com *Sent:* Monday, June 16, 2008 12:48 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi

Re: [amibroker] Re: Timeframeset question

2008-07-03 Thread Graham
In this statement Min3RSI = RSIa(Min3close,10); you are using the 1 minute periods and 3 minute value To get full 3 minute Min3RSI you should calculate it within timeframeset, then expand -- Cheers Graham Kav AFL Writing Service http://www.aflwriting.com 2008/7/3 blinddoekje [EMAIL

Re: [amibroker] Re: Timeframeset question

2008-07-01 Thread Louis Préfontaine
, June 16, 2008 12:48 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Oups, sorry... That was a typo. The real thing is Buy = RSI525 AND ... But it does not give me a lot of signals. I wonder if there is something wrong with the conversion from hourly to daily to hourly bars

[amibroker] Re: Timeframeset question

2008-07-01 Thread Barry Scarborough
signals earlier, based on amount of data available today. * - Original Message - *From:* Louis Préfontaine [EMAIL PROTECTED] *To:* amibroker@yahoogroups.com *Sent:* Monday, June 16, 2008 12:48 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Oups, sorry

Re: [amibroker] Re: Timeframeset question

2008-06-30 Thread Dennis Brown
- or at least experiment with both). This should give you signals earlier, based on amount of data available today. - Original Message - From: Louis Préfontaine To: amibroker@yahoogroups.com Sent: Monday, June 16, 2008 12:48 PM Subject: Re: [amibroker] Re: Timeframeset question Hi, Oups

Re: [amibroker] Re: Timeframeset question

2008-06-28 Thread Louis Préfontaine
:* Monday, June 16, 2008 12:37 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Is this formula correct? TimeFrameSet( inDaily ); RSI5 = RSI (5); TimeFrameRestore(); Buy = RSI5 and CO; Thanks, Louis p.s. I want the RSI on 5 days to be below 25 and the CO in hourly data

[amibroker] Re: Timeframeset question

2008-06-16 Thread blinddoekje
Thanks; gave it a try but still doesn't work. I only get EOD results ... In amibroker@yahoogroups.com, Mohammed [EMAIL PROTECTED] wrote: Hi; Please try this one. I'm not sure if it work or not.. TimeFrameSet( in1Minute); Vol_Trig= V = BBandTop(V,10,2);

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Louis Préfontaine
Hi, Is this formula correct? TimeFrameSet( inDaily ); RSI5 = RSI (5); TimeFrameRestore(); Buy = RSI5 and CO; Thanks, Louis p.s. I want the RSI on 5 days to be below 25 and the CO in hourly data. Is that correct? 2008/6/16 blinddoekje [EMAIL PROTECTED]: Thanks; gave it a try but still

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Ara Kaloustian
RSI5 is a numeric value ... so the formula is not correct. You need to say: Buy = RSI5 25 and - Original Message - From: Louis Préfontaine To: amibroker@yahoogroups.com Sent: Monday, June 16, 2008 12:37 PM Subject: Re: [amibroker] Re: Timeframeset question Hi

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Louis Préfontaine
12:37 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Is this formula correct? TimeFrameSet( inDaily ); RSI5 = RSI (5); TimeFrameRestore(); Buy = RSI5 and CO; Thanks, Louis p.s. I want the RSI on 5 days to be below 25 and the CO in hourly data. Is that correct

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Ara Kaloustian
signals earlier, based on amount of data available today. - Original Message - From: Louis Préfontaine To: amibroker@yahoogroups.com Sent: Monday, June 16, 2008 12:48 PM Subject: Re: [amibroker] Re: Timeframeset question Hi, Oups, sorry... That was a typo. The real thing

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Louis Préfontaine
give you signals earlier, based on amount of data available today.* - Original Message - *From:* Louis Préfontaine [EMAIL PROTECTED] *To:* amibroker@yahoogroups.com *Sent:* Monday, June 16, 2008 12:48 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Oups, sorry

Re: [amibroker] Re: Timeframeset question

2008-06-16 Thread Louis Préfontaine
.* - Original Message - *From:* Louis Préfontaine [EMAIL PROTECTED] *To:* amibroker@yahoogroups.com *Sent:* Monday, June 16, 2008 12:48 PM *Subject:* Re: [amibroker] Re: Timeframeset question Hi, Oups, sorry... That was a typo. The real thing is Buy = RSI525 AND ... But it does

[amibroker] Re: Timeframeset question

2008-06-15 Thread Mohammed
Hi; Please try this one. I'm not sure if it work or not.. TimeFrameSet( in1Minute); Vol_Trig= V = BBandTop(V,10,2); RSI_Trig = RSIa(C,10)70; TimeFrameRestore(); Vol_Trig_ = TimeFrameExpand(Vol_Trig, in1Minute);