PureBytes Links
Trading Reference Links
|
treliff,
It looks like you are working on the Kase indicators. I saw your
reference to the kase website in your previous post and I took a
look at it and became very interested.
I have some afls that plot some of the indicators as best as I could
figure them out. If you are anyone else is interested, I will post
them and maybe we could work together to come up with the indicators
and backtest system that follows the kase system. I would also like
a second opinion on my interpretation of her methods. I think most
everything is in her articles but it takes a lot to dig through them
to determine what she is doing. It seems Ms Kase is very skillful
at not giving you everything you need in one article. I was also
wondering if her book has a complete explanation in it?
I am looking to use these methods on the Forex market.
Let me know if anyone is interested.
Byron
--- In amibroker@xxxxxxxxxxxxxxx, "treliff" <treliff@xxxx> wrote:
> Hi,
> I need some loop-programming help.
>
> I have already defined a function f(n) (n are integers 10,11,...)
> and now I want to define function g(n) such that
>
> g(10) = f(10)
> g(11) = f(10) + f(11)
> g(12) = f(10) + f(11) + f(12)
> ...
> etc. say up to g(30)
>
> As a clumsy mathematician (not a programmer) I would write
something
> like:
>
> function g(n)
> {
> g(10) = f(10);
> for (n=11;n<=30,n++)
> {
> g(n) = g(n-1) + f(n);
> }
> return g(n);
> }
>
> but this is obviously wrong, the first syntax error is the use of
> "g(10)" within the code.
>
> Can anyone help me get this code right? Thanks much in advance.
>
> PS
> Though this seems irrelevant to my question, the function f is
> defined as follows:
>
> function f(n)
> {
> return log(C/Ref(C,-n))/(StDev(log(C/Ref(C,-1)),n)*sqrt(n)) ;
> }
------------------------ Yahoo! Groups Sponsor ---------------------~-->
Buy Ink Cartridges or Refill Kits for your HP, Epson, Canon or Lexmark
Printer at MyInks.com. Free s/h on orders $50 or more to the US & Canada.
http://www.c1tracking.com/l.asp?cid=5511
http://us.click.yahoo.com/mOAaAA/3exGAA/qnsNAA/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
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/
|