PureBytes Links
Trading Reference Links
|
thanks!
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Herman vandenBergen
To: <A title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Wednesday, April 23, 2003 4:08
PM
Subject: RE: [amibroker] Subject: Results
of Scan/Exploration
<FONT face=Arial color=#0000ff
size=2>Using array subscripts you can put any kind of data into a
array:
<FONT face=Arial color=#0000ff
size=2> Data[0] =
YourParameter1;
<FONT face=Arial color=#0000ff
size=2> Data[1] =
Your{arameter2;
<FONT face=Arial color=#0000ff
size=2>YourParameter could also use subscripts...
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>When you want to save the data into a stock-specific array you use the
Atc, some thing like this for the Explorer:
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>AddToComposite(Data,"~"+Name()+"-Data","X",1|2|4|16); // Use in
Explorer, Data here refers to the array you filed using subscripts. This array
will be of length equal to number of bars in the current stock - a bit of
over-kill - but this means you can put a ton of data into a Composite (5
fields: OHLCV). The great thing is that this information remains on Disk for
re-use at any time from any program, use Foreign("~"+Name()+"-Data","X"); here
X can be any of OHLCV.
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>You can save system calibration data for automatic recall. You cannot
save text in a Composite however you can save Status("StockNum"), this is an
ordinal number pointing to your stock in your group (it changes as you change
groups!!).
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>Best regards,
<FONT face=Arial color=#0000ff
size=2>Herman
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Arial color=#0000ff
size=2>
<FONT face=Tahoma
size=2>-----Original Message-----From: Stewart
[mailto:stewart@xxxxxxxxxxxxxxxx]Sent: April 22, 2003 10:29
AMTo: amibroker@xxxxxxxxxxxxxxxSubject: Re:
[amibroker] Subject: Results of Scan/Exploration
but using AddtoComposite(), is there a way
to relate "a row" to a specific ticker?
<BLOCKQUOTE
>
----- Original Message -----
<DIV
>From:
Dimitris
Tsokakis
To: <A
title=amibroker@xxxxxxxxxxxxxxx
href="">amibroker@xxxxxxxxxxxxxxx
Sent: Tuesday, April 22, 2003 5:56
PM
Subject: [amibroker] Subject: Results
of Scan/Exploration
Suppose we run an exploration for 100
stocksX=StochD();Filter=1;AddColumn(X,"StochD");for one
day.The result is an 100-dimension vector.We can save only in 6
fields through AddToComposite() function, namely C, O, H, L, V, I.If
we place the first 6 results to each field, we have no place to save the
rest 94 results.It is a 100X100 diagonal matrix, as in the att.
gifbut, even if we could, the result would not be an array.An
array has one numerical value per day. In this case we would have a set of
100 numerical values per dayand we would create an 100-dimensional
"Hyper array". It needs specific imagination to understand the use of
this creature. DT
There's no way to store the results of an
Exploration to an array, right?
Thanks,
<FONT face=Arial
size=2>StewartSend
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------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.
Send BUG REPORTS to bugs@xxxxxxxxxxxxxSend
SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------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.
Send
BUG REPORTS to bugs@xxxxxxxxxxxxxSend SUGGESTIONS to
suggest@xxxxxxxxxxxxx-----------------------------------------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.
Yahoo! Groups Sponsor
ADVERTISEMENT
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 the Yahoo! Terms of Service.
|