gpt4 book ai didi

c# - 将反向移动平均公式转换为 C#

转载 作者:行者123 更新时间:2023-11-30 16:04:30 25 4
gpt4 key购买 nike

我一直在绞尽脑汁试图将这个公式转换为 C#,但没有成功。

REMA Formula . enter image description here
我在做 proggies 方面很不错,但在数学方面不行。

Where 0 < λ ≤ 1 is a decay factor.
When λ < 1, the exponentially weighted moving average assigns greater weights to the prices.

Contrary to the regular exponential moving average that gives greaterweights to the most recent prices, the reverse exponential movingaverage assigns greater weights to the oldest prices anddecreases the importance of the most recent prices.

最佳答案

高效的 REMA() 具有错误检查和特定于上下文的返回值

高效?是的,避免重复重复的昂贵操作(或依赖编译器优化技巧)

有错误检查?是的,几乎是 Q/A 程序的必需品。

特定于上下文? 是,返回 { -1。 | REMA( k, lambda ) } 允许调用者处理输入错误的极端情况。

double[] fTimeSeriesPRICE;     // a forward-stepping storage ( vs. a MT4 reversed-stepping model )

public double REMA( int k, double lambda )
{
if ( lambda <= 0.0 // lambda shall not fall on/under 0.0
|| lambda > 1.0 // shall not grow beyond 1.0
|| k <= 0 // depth shall not be negative or 0
)
return -1.0; // context-protecting RET value

int aCurrentPricePTR = fTimeSeriesPRICE.Length - 1;
int aMaxIterableDEPTH = Math.Min( aCurrentPricePTR, k );

double numerator = 0.0;
double denominator = 0.0; // REMA formula-expansion contains +1 at the end, never less, never negative
double lambdator = 1.0; // lambda ^ ( ( k - j ) == 0 ) == 1.0

for ( int aReverseSteppingPTR = 0;
aReverseSteppingPTR <= aMaxIterableDEPTH;
aReverseSteppingPTR++
)
{ numerator += lambdator * fTimeSeriesPRICE[aCurrentPricePTR - aReverseSteppingPTR];
denominator += lambdator;
lambdator *= lambda;
}
return numerator / denominator; // numerically fair, denominator never < +1.0
}

关于c# - 将反向移动平均公式转换为 C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34936981/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com