我正在编写一个小型技术分析库,其中包含 TA-lib 中不可用的项目。我从在cTrader上找到的一个示例开始,并将其与 TradingView 版本中的代码进行匹配。
这是来自 TradingView的Pine 脚本代码:
len = input(9, minval=1, title="Length")
high_ = highest(hl2, len)
low_ = lowest(hl2, len)
round_(val) => val > .99 ? .999 : val < -.99 ? -.999 : val
value = 0.0
value := round_(.66 * ((hl2 - low_) / max(high_ - low_, .001) - .5) + .67 * nz(value[1]))
fish1 = 0.0
fish1 := .5 * log((1 + value) / max(1 - value, .001)) + .5 * nz(fish1[1])
fish2 = fish1[1]
这是我实施指标的尝试:
public class FisherTransform : IndicatorBase
{
public int Length = 9;
public decimal[] Fish { get; set; }
public decimal[] Trigger { get; set; }
decimal _maxHigh;
decimal _minLow;
private decimal _value1;
private decimal _lastValue1;
public FisherTransform(IEnumerable<Candle> candles, int length)
: base(candles)
{
Length = length;
RequiredCount = Length;
_lastValue1 = 1;
}
protected override void Initialize()
{
Fish = new decimal[Series.Length];
Trigger = new decimal[Series.Length];
}
public override void Compute(int startIndex = 0, int? endIndex = null)
{
if (endIndex == null)
endIndex = Series.Length;
for (int index = 0; index < endIndex; index++)
{
if (index == 1)
{
Fish[index - 1] = 1;
}
_minLow = Series.Average.Lowest(Length, index);
_maxHigh = Series.Average.Highest(Length, index);
_value1 = Maths.Normalize(0.66m * ((Maths.Divide(Series.Average[index] - _minLow, Math.Max(_maxHigh - _minLow, 0.001m)) - 0.5m) + 0.67m * _lastValue1));
_lastValue1 = _value1;
Fish[index] = 0.5m * Maths.Log(Maths.Divide(1 + _value1, Math.Max(1 - _value1, .001m))) + 0.5m * Fish[index - 1];
Trigger[index] = Fish[index - 1];
}
}
}
IndicatorBase 类和 CandleSeries 类
问题
输出值似乎在预期范围内,但是我的 Fisher 变换交叉与我在 TradingView 的指标版本中看到的不匹配。
问题
如何在 C# 中正确实现 Fisher 变换指标?我希望这与 TradingView 的 Fisher Transform 输出相匹配。
我知道的
我已经对照我个人编写的其他指标和来自 TA-Lib 的指标检查了我的数据,并且这些指标通过了我的单元测试。我还逐个对照 TradingView 数据检查了我的数据,发现我的数据符合预期。所以我不怀疑我的数据是问题所在。
细节
下图是上面显示的应用于 TradingView 图表的 Fisher 变换代码。我的目标是尽可能地匹配这个输出。
Fisher 青色 触发器 洋红色
预期产出:
交叉在东部时间 15:30 完成
大约 Fisher 值是 2.86
大约触发值为 1.79
交叉在东部时间 10:45 完成
大约费雪值是 -3.67
大约触发值为 -3.10
我的实际输出:
交叉在东部时间 15:30 完成
我的费雪值是 1.64
我的触发值是 1.99
交叉在东部时间 10:45 完成
我的费雪值是 -1.63
我的触发值是 -2.00
赏金
为了让您的生活更轻松,我包含了一个小型控制台应用程序,其中包含通过和失败的单元测试。所有单元测试都是针对相同的数据集进行的。通过的单元测试来自经过测试的工作 简单移动平均线指标。失败的单元测试是针对有问题的Fisher 变换指标的。
项目文件 (5/14 更新)
帮助我的 FisherTransform 测试通过,我将奖励赏金。
如果您需要任何其他资源或信息,请发表评论。
我会考虑的替代答案
在 C# 中提交您自己的工作 FisherTransform
解释为什么我的 FisherTransform 实际上按预期工作