PureBytes Links
Trading Reference Links
|
jack
i havn't tried your code but you may just need to extend your loop.
change this
CL = Line[n];
}
str;
Filter= 1; // Show every day
AddColumn(WCCI,"CCI",3.2);
to this
CL="";
CL = Line[n];
IF(CL)
{
str;
Filter= 1; // Show every day
AddColumn(WCCI,"CCI",3.2);
...
...
AddColu
}}
bw
curt
--- In amibroker@xxxxxxxxxxxxxxx, "ckinsey2003" <ckinsey2003@xxxx>
wrote:
>
> Thank you for posting that code.
>
> At 1st glance it looks possible to Backtest/Explore for Trendline
> Breaks using LineArray. And that is what I'm looking for. Looks
like
> they have the LineArray in a FOR loop, which I suspected might be
needed.
>
> That is a bunch of code for me to try and understand.. This could
take
> weeks <G>. I better get started. Thanks again..
>
> Jack Kinsey
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/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/
|