PureBytes Links
Trading Reference Links
|
If I wanted to do something like find the linear regression slope of
the close with varying lengths where the length was equal to the
Hilbert Period, this still can't be done inside a For loop in AFL,
can it ?
Example:
Lets Assume HilbertPeriod is array that has been calculated earlier
based on Hilbert Period does the code below have a prayer of working ?
for( i = 1; i < BarCount; i++ )
{
LRS[ i ] = LinRegSlope(C, HilbertPeriod [ i ]);
}
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Make Money Online Auctions! Make $500.00 or We Will Give You Thirty Dollars for Trying!
http://us.click.yahoo.com/yMx78A/fNtFAA/i5gGAA/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/
|