PureBytes Links
Trading Reference Links
|
this is a copy of the email that I sent. Tue, 07 Aug 2001
20:10:41 -0000
as you can see, I am not trying to start from a date in the future.
Hi Dimitri;
Thank you,
I wasn't sure how to get current close, I had
c1 = ref(close,0); which made no difference to the calculations as
when I had
c1 = ref(close,1);
It should be the current closing price. c1 = c; ... I will correct and
upload new file to list.
also, You can use: cl = ref(close,-n ); to start your calculation from
a date back in time. (-n being days back ).
thank you.
Anthony
--------------013CF1941005B77FE4666952
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
Hello,
<p>this is a copy of the email that I sent.
<b><u>Tue, 07 Aug 2001 20:10:41 -0000</u></b>
<br>as you can see, I am not trying to start from a date in the future.
<p>Hi Dimitri;
<p>Thank you,
<p> I wasn't sure how to get current close, I had
<br>c1 = ref(close,0); which made no difference to the calculations
as
<br>when I had
<br>c1 = ref(close,1);
<p>It should be the current closing price. c1 = c; ... I will correct and
<br>upload new file to list.
<p>also, You can use: cl = ref(close,-n ); to start your calculation from
<br>a date back in time. (-n being days back ).
<p>thank you.
<br>Anthony</html>
--------------013CF1941005B77FE4666952--
--- Begin Message ---
To: amibroker@xxxxxxxxxxxxxxx
Subject: [amibroker] Re: New Indicator added to AFL Library
From: ajf1111@xxxx
Date: Tue, 07 Aug 2001 20:10:41 -0000
Delivered-to: mailing list amibroker@xxxxxxxxxxxxxxx
In-reply-to: <9kpgn9+2g7d@xxxx>
List-unsubscribe: <mailto:amibroker-unsubscribe@xxxxxxxxxxxxxxx>
Mailing-list: list amibroker@xxxxxxxxxxxxxxx; contact amibroker-owner@xxxxxxxxxxxxxxx
Reply-to: amibroker@xxxxxxxxxxxxxxx
User-agent: eGroups-EW/0.82
Hi Dimitri;
Thank you,
I wasn't sure how to get current close, I had
c1 = ref(close,0); which made no difference to the calculations as
when I had
c1 = ref(close,1);
It should be the current closing price. c1 = c; ... I will correct and
upload new file to list.
also, You can use: cl = ref(close,-n ); to start your calculation from
a date back in time. (-n being days back ).
thank you.
Anthony
--- In amibroker@xxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx> wrote:
> Anthony,
> You write
> c1 = ref(close,1); /* current closing price */
>
> ref(close,1) is not the current closing price, is the closing price
> one day later in the future.
> The current closing price is
> c1=c;
> What do you mean in the beginning of your new code ?
> Thank you for sharing.
> Dimitris Tsokakis
>
> --- In amibroker@xxxx, ajf1111@xxxx wrote:
> > Hi All;
> >
> > just added a new indicator to the AFL Library. Feedback is
welcome.
> > ...Enjoy!!!!
> >
> > Name: ... Probability and Future Price Projection.
> >
> > ... comment to follow.
> >
> > Also ,I will be posting short description on
> > how to use the information .
> >
> > thank you,
> > Anthony
Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
--- End Message ---
|