PureBytes Links
Trading Reference Links
|
If the number of conditions is less than BarCount, you could store
your non-sequential numbers in an array and then fetch them from the
array later. Like this:
// Store my numbers
array[0] = 65;
array[1] = 126;
array[2] = 867;
array[3] = 1023;
// Iterate over my numbers
for (i = 0; i <= 3; i++)
number = array[i];
Does that help?
-Steve
--- In amibroker@xxxxxxxxxxxxxxx, "ozzyapeman" <zoopfree@xxx> wrote:
>
> Looping and optimizing a set of sequential numbers is easy. But how does
> one loop or optimize through a large set of non sequential numbers, that
> have no defined step value or relation?
>
> Without getting too bogged down in tangential details, I have a DLL that
> created a new function in AmiBroker. That function spits out thousands
> of possible buy/sell conditions. Those conditions were then optimized in
> a separate AFL, and I ended up with hundreds of "good" conditions that I
> now want to step through, for backtesting purposes.
>
> For e.g.:
>
> for (a = step through all the numbers below)
>
> condition65 = ...stuff
> condition126 = ...stuff
> condition867 = ...stuff
> condition 1023 = ...stuff
>
> [... a few hundred more]
>
> Buy = VarGet("condition"+NumToStr(a,1.0,0));
>
------------------------------------
**** IMPORTANT ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
*********************
TO GET TECHNICAL SUPPORT from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com
*********************
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
For other support material please check also:
http://www.amibroker.com/support.html
*********************************
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/amibroker/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/amibroker/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:amibroker-digest@xxxxxxxxxxxxxxx
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
<*> 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/
|