如何使用 Math::Business::EMA 和 DBI 来计算 Perl 中的指数移动平均线?
脚本从 mysql 中提取数据:
$DBI::result = $db->prepare(qq{
SELECT close
FROM $table
WHERE day <= '$DATE'
ORDER BY day DESC
LIMIT $EMA
});
$DBI::result->execute();
while($row = $DBI::result->fetchrow) {
print "$row\n";
};
具有以下示例结果:
1.560 1.560 1.550...
但我需要使用 数学::商业::EMA;我不知道如何在保持准确性的同时进行计算。 EMA 是加权的,我缺乏 Perl 知识并没有帮助。
Script pulls data from mysql:
$DBI::result = $db->prepare(qq{
SELECT close
FROM $table
WHERE day <= '$DATE'
ORDER BY day DESC
LIMIT $EMA
});
$DBI::result->execute();
while($row = $DBI::result->fetchrow) {
print "$row\n";
};
with the following example results:
1.560 1.560 1.550...
But I need to work out the EMA using Math::Business::EMA; and I'm not sure how to calculate this while maintaining the accuracy. EMA is weighted and My lack of Perl knowledge is not helping.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,对代码的一些评论:
您似乎没有使用strict。你应该。
您似乎认为践踏整个
DBI
命名空间是可以的。事实并非如此。您应该使用占位符,而不是插入到 SQL 字符串中。
现在,对于实际任务(未经测试的代码):
First, some comments on the code:
You do not seem to be using strict. You should.
You seem to think it is OK to trample all over the
DBI
namespace. It is not.You should use placeholders instead of interpolating into the SQL string.
Now, for the actual task (untested code):