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

Re: [amibroker] Please help!!



PureBytes Links

Trading Reference Links

Yeah, Jayson!
 
Dat´s a fine way of doing it! TJ suggested another 
(see his post).
 
Geez, sometimes I can´t see the obvious when I´ve 
stared at the screen long enough.
 
TJ should write some sorta "Can´t see the forest 
for the trees" bugfix once he can spare away some time>VBG<.
 
Thanks, bud, and have a great day!
 
Markus
<BLOCKQUOTE 
>
----- Original Message ----- 
<DIV 
>From: 
<A title=jcasavant@xxxx 
href="">Jayson 
To: <A title=amibroker@xxxxxxxxxx 
href="">amibroker@xxxxxxxxxxxxxxx 
Sent: Monday, October 28, 2002 9:17 
PM
Subject: RE: [amibroker] Please 
help!!

<SPAN 
class=119561120-28102002>Markus,
<SPAN 
class=119561120-28102002> 
are 
you asking for the llv value between bars 100 and 150?
<SPAN 
class=119561120-28102002> 
if 
so then we know the look back is 50 (150-50) so we just need the llv(l,50) 
value on bar 150
<SPAN 
class=119561120-28102002> 
<SPAN 
class=119561120-28102002> try....
<SPAN 
class=119561120-28102002>
x=<FONT face=Arial 
color=#0000ff size=2>LLV<FONT face=Arial color=#282828 
size=2>(L<FONT 
face=Arial color=#282828 size=2>,<FONT face=Arial color=#ff00ff 
size=2>50);<FONT 
face=Arial color=#0000ff size=2>
Plot(<FONT face=Arial 
color=#0000ff size=2>ValueWhen<FONT face=Arial color=#282828 
size=2>(Cum<FONT 
face=Arial color=#282828 size=2>(<FONT face=Arial color=#ff00ff 
size=2>1)==<FONT 
face=Arial color=#ff00ff size=2>150<FONT face=Arial color=#282828 
size=2>,x),""<FONT 
face=Arial color=#282828 size=2>,<FONT face=Arial color=#000000 
size=2>colorBlue,<FONT 
face=Arial color=#ff00ff size=2>4<FONT face=Arial color=#282828 
size=2>);
 
Jayson 

<FONT face=Tahoma 
size=2>-----Original Message-----From: <A 
href="">funnybiz@xxxx 
[mailto:funnybiz@xxxx]Sent: Monday, October 28, 2002 1:32 
PMTo: amibroker@xxxxxxxxxxxxxxxSubject: Re: [amibroker] 
Please help!!
Jayson,
 
thanks for your suggestion, but it´s still 
somewhat crippled.
 
Maybe TJ can implement another AFL function. I´ll 
go ahead and ask him.
 
Do you have a suggestion how I could find the 
lowest value, for instance th lowest low, for bar number 100 and 
150.
 
I messed around with llv and lowest but couldn´t 
figure it out how to implement the cum function!!
 
Thanks a lot
 
Markus
<BLOCKQUOTE 
>
----- Original Message ----- 
<DIV 
>From: 
<A title=jcasavant@xxxx 
href="">Jayson 
To: <A title=amibroker@xxxxxxxxxxxx 
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Monday, October 28, 2002 7:08 
PM
Subject: RE: [amibroker] Please 
help!!

<SPAN 
class=517260218-28102002>Markus,
<SPAN 
class=517260218-28102002> 
<SPAN 
class=517260218-28102002>Since you cannot use Date() in an exploration 
perhaps you could live with....
<SPAN 
class=517260218-28102002> 
<SPAN 
class=517260218-28102002>
AddColumn(<FONT 
color=#0000ff>BarsSince(b <FONT 
color=#000000>AND <FONT 
color=#000000>C),<FONT 
color=#ff00ff>"condition date"<FONT 
color=#282828>);
the 
alternative would be to use Datenum() but I find the format to be a bit 
challenging as it is different then the usual 10/21/02 format 
.
<SPAN 
class=517260218-28102002>datenum would return this as 1021021 where 102 is 
the year 2002 , 10 is the month and 21 the day. 
not 
what you want but perhaps something you can 
adapt.....
 
Jayson 

<FONT face=Tahoma 
size=2>-----Original Message-----From: funnybiz@xxxx 
[mailto:funnybiz@xxxx]Sent: Monday, October 28, 2002 9:43 
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: [amibroker] 
Please help!!

Dear folks, 
I have two questions regarding the code below, if 
you care:
 
1./ I need to find out when a given condition 
happens in relation to its bar number, i.e. I -let´s say- want to find out 
where a condition happens closest to bar number 1000. Can I use the 
iif-function with "true result" being a cum-fun function which has multiple 
values.
 
2./ when I use this scan, I seem to get the 
proper results in terms of the low value and bar number, but the date I´, 
given is always the last bar´s date INSTEAD of the date´s bar when the 
conditon happens. How can I get the condition´s bar date, please?
Sorry for my ignorance and the waste of your 
time<g>.
Markus
 - - - - - - - - - - 
 
A=<FONT face="Courier New" 
color=#0000ff>IIf<FONT face="Courier New" 
color=#000000>(Low<<FONT face="Courier New" 
color=#0000ff>Ref<FONT face="Courier New" 
color=#000000>(Low,-<FONT face="Courier New" 
color=#ff00ff>1),<FONT 
face="Courier New" color=#0000ff>Cum<FONT face="Courier New" 
color=#000000>(1<FONT 
face="Courier New" color=#000000>),<FONT face="Courier New" 
color=#ff00ff>0);
B=A<<FONT face="Courier New" 
color=#ff00ff>1000;
C=A><FONT face="Courier New" 
color=#ff00ff>0;
Filter=1<FONT 
face="Courier New" color=#000000>;<FONT face="Courier New" 
color=#0000ff>
AddColumn(<FONT 
face="Courier New" color=#0000ff>Cum<FONT face="Courier New" 
color=#000000>(1<FONT 
face="Courier New" color=#000000>),<FONT face="Courier New" 
color=#ff00ff>"total barnumber"<FONT face="Courier New" 
color=#000000>,1.3<FONT 
face="Courier New" color=#000000>);<FONT face="CourierNew" 
color=#0000ff>
AddColumn(<FONT 
face="Courier New" color=#0000ff>ValueWhen<FONT face="Courier New" 
color=#000000>(B AND C,Low,<FONT 
face="Courier New" color=#ff00ff>2<FONT face="Courier New" 
color=#000000>),<FONT face="Courier New" 
color=#ff00ff>"low"<FONT face="Courier New" 
color=#000000>,1.3<FONT 
face="Courier New" color=#000000>);<FONT face="CourierNew" 
color=#0000ff>
AddColumn(<FONT 
face="Courier New" color=#0000ff>ValueWhen<FONT face="Courier New" 
color=#000000>(B AND C,<FONT face="Courier New" 
color=#0000ff>Cum(<FONT 
face="Courier New" color=#ff00ff>1<FONT face="Courier New" 
color=#000000>),2<FONT 
face="Courier New" color=#000000>),<FONT face="Courier New" 
color=#ff00ff>"condition bar number"<FONT face="Courier New" 
color=#000000>,1.3<FONT 
face="Courier New" color=#000000>);<FONT 
face="Courier New">Post AmiQuote-related messages 
ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)Check 
group FAQ at: <A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service. 
Post AmiQuote-related messages ONLY to: 
amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)Check 
group FAQ at: <A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service. 
Post AmiQuote-related messages ONLY to: 
amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)Check 
group FAQ at: <A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service. 
Post 
AmiQuote-related messages ONLY to: amiquote@xxxxxxxxxxxxxxx (Web page: <A 
href="">http://groups.yahoo.com/group/amiquote/messages/)Check 
group FAQ at: <A 
href="">http://groups.yahoo.com/group/amibroker/files/groupfaq.html 
Your use of Yahoo! Groups is subject to the <A 
href="">Yahoo! Terms of Service.