PureBytes Links
Trading Reference Links
|
don't understand your question but I did something with markers posted here:
http://www.amibroker.com/library/detail.php?id=339
hope it helps,
egds, Ed
----- Original Message -----
From: aff392
To: amibroker@xxxxxxxxxxxxxxx
Sent: Wednesday, November 17, 2004 5:29 AM
Subject: [amibroker] AB Marker help
Is it possible for AB to find the relationship between bars defined
by
AB Markers?
I'm using the following bits of code copied from the AB library to
record
the bars of interest for Close and High values :
StartBar = BeginValue( BarIndex() ); ;
FinishBar = EndValue( BarIndex() );
i = StartBar;
for (i = StartBar; i<Finishbar; i++)
{
Cx = C[i] ;
Hx = H[i];
}
Don't know where to go from here.
Can AB define the relationship between the Close and High for
each bar such to define the sequence between the markers?
As example the markers may define the bars as
bars=C>ref(C,-2) and H>ref(H,-3) and ..........so on
Not sure if this is clear but any direction would be appreciated.
Maybe some truth table or coorelation function.
Thanks
Art
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Sponsor
Get unlimited calls to
U.S./Canada
------------------------------------------------------------------------------
Yahoo! Groups Links
a.. To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
b.. To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
[Non-text portions of this message have been removed]
------------------------ Yahoo! Groups Sponsor --------------------~-->
$9.95 domain names from Yahoo!. Register anything.
http://us.click.yahoo.com/J8kdrA/y20IAA/yQLSAA/GHeqlB/TM
--------------------------------------------------------------------~->
Check AmiBroker web page at:
http://www.amibroker.com/
Check group FAQ at: http://groups.yahoo.com/group/amibroker/files/groupfaq.html
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> To unsubscribe from this group, send an email to:
amibroker-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|