Çok eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
John Ehlers' article in this issue, "The Inverse Fisher Transform," includes the TradeStation code for two indicators. The MetaStock code for those same indicators is listed below.
📌Inverse Fisher Transform of RSI
v1:= .1*(RSI(5)-50);
v2:= Mov(v1,9,W);
.5;
-.5...
Commodity Channel Index
Description :
The CCI is a price momentum indicator that works well for commodities,stocks, and mutual funds.
Usage: CCI( Period1 )
Returns: Array
where:
Period1 = number of periods in the CCI calculation as shown below.
Mathematically:
CCI = (M - A)/(X * D) percent...