PureBytes Links
Trading Reference Links
|
I figure you have a couple of choices.
One of the things I use is ATR(1) -- the avg. true range for one
period, or the true range between today and yesterday. I like to know
that number, and you can also simply use
(c - ref(c, 1))/ref(c, 1)
For part of my chart title, I include:
"ATR: " + NumToStr(ATR(1), 4.2) + " ( " +
NumToStr((C - Ref(C, -1)), 4.2) + " / " +
NumToStr((((C - Ref(C, -1)) / Ref(C, -1)) * 100), 2.1) +
"% )
It's a snippet, so look out for unbalanced parantheses, quotes, etc.
Gordon
--- In amibroker@xxxxxxxxxxxxxxx, "nb9trade" <clyde@xxxx> wrote:
> Is there a built in function for % change from one day to the next?
>
> What code would be used to designate the previous days close, high
> low or last etc.?
>
> Thanks
>
> Clyde
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/
|