PureBytes Links
Trading Reference Links
|
finding the nth root of a number is the same (for these purposes
anyway) as raising the number to the inverse of the root.
e.g.
2nd root of 9: 9 ^ (1/2) = 3
3rd root of 27: 27 ^ (1/3) = 3
4th root of 81: 81 ^ (1/4) = 3
etc
so in MetaStock, use the power function...
power(9,1/2);
power(27,1/3);
power(81,1/4);
hth
--- In equismetastock@xxxxxxxxxxxxxxx, "Lionel Issen" <lissen@xxx> wrote:
>
> Just use logarithms to find the logarithm of the nth root of the
number and
> then take the antilogarithm of the result.
>
>
>
> The Metastock help system contains a description of the code for natural
> logs and decimal logarithms.
>
>
>
> Lionel
>
>
>
> From: equismetastock@xxxxxxxxxxxxxxx
[mailto:equismetastock@xxxxxxxxxxxxxxx]
> On Behalf Of revolutiow
> Sent: Wednesday, May 21, 2008 12:03 PM
> To: equismetastock@xxxxxxxxxxxxxxx
> Subject: [EquisMetaStock Group] how to calculates the nth root of a
number
>
>
>
> 3th root of 27 = 3
>
> how to do this on metastock?
>
------------------------------------
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/equismetastock/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/equismetastock/join
(Yahoo! ID required)
<*> To change settings via email:
mailto:equismetastock-digest@xxxxxxxxxxxxxxx
mailto:equismetastock-fullfeatured@xxxxxxxxxxxxxxx
<*> To unsubscribe from this group, send an email to:
equismetastock-unsubscribe@xxxxxxxxxxxxxxx
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|