代码拉取完成,页面将自动刷新
同步操作将从 jack/缠论程序化交易系统 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
function bool = PushLow(nIndex, fValue)
global Centroid %中枢class 为全局变量,出现在所有函数堆栈中
if Centroid.bValid == true %如果正在处理中枢
Centroid.nLines = Centroid.nLines + 1; %线段 + 1
Centroid.fPLow = Centroid.fLow; %当前线段低点设定为当前低点
Centroid.fPHigh = Centroid.fHigh; %当前线段高点设定为当前高点
else
Centroid.nLines = 0; %不处理中枢,线段为0
end
%更新定位信息
Centroid.nBot2 = Centroid.nBot1;
Centroid.fBot2 = Centroid.fBot1;
Centroid.nBot1 = nIndex; %当前低点位置
Centroid.fBot1 = fValue; %当前高点位置
%如果非中枢模式下
if Centroid.bValid == false
%更新区间低点
if Centroid.fBot1 > Centroid.fBot2 %如果当前低点 > 上一个低点 => 上涨中继中枢
Centroid.fLow = Centroid.fBot1; %当前线段低点设定为当前低点
else %如果当前低点 < 上一个低点 => 下跌中继中枢
Centroid.fLow = Centroid.fBot2; %当前线段低点设定为上一个低点
end
%中枢识别
if Centroid.fHigh > Centroid.fLow %如果当前线段高点 > 当前线段低点
if Centroid.fTop1 > Centroid.fTop2 %如果当前高点 > 上一个高点
Centroid.nStart = Centroid.nTop2; %区段内起点设定为上一个高点
else %如果当前高点 < 上一个高点
Centroid.nStart = Centroid.nBot2; %区段内起点设定为上一个低点
end
Centroid.bValid = true; %中枢识别继续
end
else %如果在中枢中
%更新中枢低
if Centroid.fLow < Centroid.fBot1 %如果当前线段低点 < 当前低点
Centroid.fHigh = Centroid.fTop1; %当前线段高点设定为当前高点
Centroid.fLow = Centroid.fBot1; %当前线段低点设定为当前低点
Centroid.nEnd = Centroid.nBot2; %区段结束位置设定为上一个低点
Centroid.bValid = false; %中枢结束
if Centroid.nLines > 2 %如果完成的中枢里线段三根或者以上
bool = true;
return %输出中枢高低点位置信息true
end
end
end
bool = false;
return %没有中枢,输出false
end
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。