[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Re: highest high between two cum values



PureBytes Links

Trading Reference Links

Dimitris,

thanks for taking the time.

Iīd have several questions if I may:

1./ what does this "-1e10" do. I īve never come across this.

2./ What are you trying to tell me with the third plot command: "1+6*(Cond1
OR Cond2)". I donīt understand this condition as I donīt with most of your
high-tech coding>G<.

3./Why do you plot the close? Are these the small dots in the chart?

4./ What does the figure "5" in the "Plot(IIf(Cum(1)>=y,Hmax,-1e10),"",5,8)"
command accomplish. I understand that "4" means dots, but 5???

As you see, Iīm very much behind your skills and what comes easy to you
takes me hours if not days :-((.

As to the REAL message you were trying to bring across, please allow some
more time to digest and understand, right?

Appreciate it!

Markus


----- Original Message -----
From: "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Sunday, March 09, 2003 12:32 PM
Subject: [amibroker] Re: highest high between two cum values


> Markus,
> Well, we do not have the super automatic HighestBetween() function,
> but there are many ways to get it.
> Suppose x>y and both <Lastvalue(Cum(1)). Stay on the most recent bar
> x and find the HHV(H,x-y) [LLV(L,x-y) respectively].
> With this simple argument you will avoid more complicated "between"
> conditions, "barssince" calculations etc.
> Play with the code [my Lastvalue(Cum(1)) is 797]
> x=790;y=755;
> Cond1=Cum(1)==x;Cond2=Cum(1)==y;
> Hmax=LastValue(ValueWhen(Cond1,HHV(H,x-y)));
> Lmin=LastValue(ValueWhen(Cond1,LLV(L,x-y)));
> Plot(IIf(Cum(1)>=y,Hmax,-1e10),"",5,8);
> Plot(IIf(Cum(1)>=y,Lmin,-1e10),"",4,8);
> Plot(C,"",1+6*(Cond1 OR Cond2),64);// to paint and see the x, y
> candles
> DT
>
> --- In amibroker@xxxxxxxxxxxxxxx, "IVA GmbH" <funnybiz@xxxx> wrote:
> > Folks,
> >
> > another thing:
> >
> > What would be the code for the following:
> >
> > find the highest high between cum(x) and cum(y)
> >
> > Markus
>
>
>
> Send BUG REPORTS to bugs@xxxxxxxxxxxxx
> Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
> -----------------------------------------
> Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx
> (Web page: http://groups.yahoo.com/group/amiquote/messages/)
> --------------------------------------------
> Check group FAQ at:
http://groups.yahoo.com/group/amibroker/files/groupfaq.html
>
> Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/
>
>


Send BUG REPORTS to bugs@xxxxxxxxxxxxx
Send SUGGESTIONS to suggest@xxxxxxxxxxxxx
-----------------------------------------
Post AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx 
(Web page: http://groups.yahoo.com/group/amiquote/messages/)
--------------------------------------------
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html 

Your use of Yahoo! Groups is subject to http://docs.yahoo.com/info/terms/