PureBytes Links
Trading Reference Links
|
Title: Re: [amibroker] Re: Trading Research and its Statistics
Hello,
fwiw, streaks are easier calculated using Sum(), this also allows placing the AddColumns() in a loop for n (Plots for testing only):
Day10Dn=C < Ref(C,-1) AND Ref(C,-1)< Ref(C,-2)AND Ref(C,-2)< Ref(C,-3)AND
Ref(C,-3) < Ref(C,-4)AND Ref(C,-4) < Ref(C,-5)AND Ref(C,-5)< Ref(C,-6)AND
Ref(C,-6) < Ref(C,-7)AND Ref(C,-7) < Ref(C,-8)AND Ref(C,-8) < Ref(C,-9) AND
Ref(C,-9) < Ref(C,-10);
// shorter method:
n = 10;
Day10Dn = Sum(C<Ref(C,-1),n)==n;
Best regards,
herman
Saturday, January 31, 2009, 10:25:13 AM, you wrote:
>
|
--- In amibroker@xxxxxxxxxxxxxxx, "Anthony Faragasso" <ajf1111@xxx> wrote:
>
> Price persistency formula in the AFL library has exactly what you are looking for.
>
That's a nice exploration.
For anyone interested, I've extended it to provide parameterized colors on the output columns here .
|
__._,_.___
**** 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
*********************************
__,_._,___
|