PureBytes Links
Trading Reference Links
|
Hello Wolfgang,
the plugin ABtool has the following implemented.
It will be released this Friday or Saturday.
UM
http://groups.yahoo.com/group/abtool/
STRING xxStudyGetNext(STRING currentStudyId, chartId=1)
Param:
"currentStudyId":
A two-character identifier of the study. If "" is given then
the first study id found will be returned.
"chartId":
The id of the chart. The main chart has the id 1. For the id's
of the other charts see study() in the AFL help.
Returns: A two-character identifier of the study next after the given studyId.
Example:
sid = xxStudyGetNext(""); // get the first
while (sid != "")
{
//... do something
sid = xxStudyGetNext(sid); // get the next after this
}
----- Original Message -----
From: "global_investor" <independent_opinion@xxxxxxx>
To: <amibroker@xxxxxxxxxxxxxxx>
Sent: Wednesday, May 21, 2003 2:50 PM
Subject: [amibroker] Re: Study ID
> --- In amibroker@xxxxxxxxxxxxxxx, "DIMITRIS TSOKAKIS" <TSOKAKIS@xxxx>
> wrote:
>
> > Do you need anything more for this function ?
>
> yes!
>
>
> I'm aware of the study() function.
>
> The problem with the current study() function is that in order to use
> this function, knowledge of specific chartIDs and studyIDs is
> required.
>
> This works well for a handful of stocks, but it is not a practical
> approach to write a generalized exploration or alert manager
> application.
>
> For example, in the chart for MSFT, the user might have drawn 7
> up-trendlines (some for long-term, some for short-term trends),
> whereas in the chart for IBM he might have have drawn only
> 2 up-trendlines. In addition, the user might have drawn the
> trendlines for MSFT in two separate chart panes, one chart
> pane plotted with a linear y axis, the other chart pane plotted
> with a semi-log y axis.
>
> For a generalized exploration that checks for trendline violations,
> it would be necessary to obtain all pairs of <chartID,studyID> for
> the studies drawn for a specific stock. Moreover, it could be
> necessary to obtain directly the attributes/properties of a specific
> line study such as StartX, StartY, EndX, EndY.
>
> As mentioned in my previous post, such information would at best
> be provided at the low-level plug-in interface. Plug-in developers
> could make use of this functionality and incorporate it in
> user-friendly functions available in AFL.
>
>
> best regards,
>
> Wolfgang
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Get A Free Psychic Reading! Your Online Answer To Life's Important Questions.
http://us.click.yahoo.com/Lj3uPC/Me7FAA/uetFAA/GHeqlB/TM
---------------------------------------------------------------------~->
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/
|