函数名: trader_get_unstable_period()
适用版本: PHP 7.0.0 及以上版本
函数描述: trader_get_unstable_period() 函数用于获取指定技术指标的不稳定期。不稳定期是指在指标的计算过程中,计算结果可能不准确或不可靠的时间段。
语法: trader_get_unstable_period(string $function_name) : int
参数:
- $function_name: 必需,要获取不稳定期的技术指标的函数名。
返回值:
- 返回一个整数,表示指定技术指标的不稳定期。
示例:
// 获取RSI指标的不稳定期
$unstablePeriod = trader_get_unstable_period('trader_rsi');
echo "RSI指标的不稳定期为:{$unstablePeriod} 时间段";
// 获取MACD指标的不稳定期
$unstablePeriod = trader_get_unstable_period('trader_macd');
echo "MACD指标的不稳定期为:{$unstablePeriod} 时间段";
注意事项:
- 该函数仅适用于使用了
php_trader
扩展的 PHP 版本。 - 不同的技术指标可能具有不同的不稳定期,需要根据具体的技术指标函数名进行调用。
- 不稳定期是指在指标的计算过程中,可能出现结果不准确或不可靠的时间段,建议在使用技术指标前先确认不稳定期是否已经过去。
- 如果指定的技术指标函数名无效,函数将返回 -1。