[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Any Trade Station Coders Out There?



PureBytes Links

Trading Reference Links

--- In amibroker@xxxx, Tom McDaniel <tmtempe@xxxx> wrote:
> Hi all-
> 
> Period = Iif((((Im > 0) or (Im < 0) )and ((Re < 0) or (Re > 0))),
> 360/Atan(Im/Re),0);
A note for this point:
Atan(Im/Re) will give you the result in radians
"Returns the arc tangent of NUMBER or ARRAY. The value is returned in 
radians"
I do not know what is period for the author, but is not usual to 
devide deg/rad.
I will suppose here the use of 6.28/Atan(Im/Re) instead of 
360/Atan(Im/Re), but I want to know better what is period for the 
author.
D.T.