PureBytes Links
Trading Reference Links
|
Anthony
I will take a shot at it.
Say
x = Sum(cum(1),2)
and
y1 = 14
and
y2 = 2
do this:
This should be your code:
x = Sum(cum(1),2);
y1 = 14;
y2 = 2;
result = (x ^ y1) - (x ^ y2);
At 05:28 PM 11/10/2001 -0500, you wrote:
Tomasz;
I know that Pwr(x,y) in metastock is translated to
x ^ y in Amibroker
Could you translate this line: Pwr(sum(cum(1),2),14) -
Pwr(sum(cum(1),14),2)
|