[求助]等价K线
传统K线固定时间,等价K线是固定价格点位,哪位大神能写或者有类似指标?
下面是飞狐等价K线代码:
I
INPUT:N(5,1,100);fc:=c;fo:=o;cc:0*c,PRECISION4,LINETHICK0;oo:0*c,PRECISION4,LINETHICK0;t1:=0*c;t2:=0*c; for i=1 to datacount do begin if i=1 and fc>fo then cc:=fc; oo:=fc; if i=1 and fc1 then
cc:=cc[i-1];
oo:=oo[i-1];
if i>1 and fc>cc*(1+n/1000) then begin
cc:=cc[i-1]*(1+n/1000);
oo:=cc[i-1];
end;
if i>1 and fc
62667e083177dd5605084601d9143df6.png
INPUT:N(5,1,100);fc:=c;fo:=o;cc:0*c,PRECISION4,LINETHICK0;oo:0*c,PRECISION4,LINETHICK0;t1:=0*c;t2:=0*c; for i=1 to datacount do begin if i=1 and fc>fo then cc:=fc; oo:=fc; if i=1 and fc
62667e083177dd5605084601d9143df6.png
发表于:2022-11-02 17:21只看该作者
2楼
Renko Chart(磚型圖)
韬客社区www.talkfx.co
发表于:2022-11-03 00:21只看该作者
3楼
这是啥高端操作
韬客社区www.talkfx.co
4楼
johnnyso87 发表于 2022-11-3 01:21
Renko Chart(磚型圖)
韬客社区www.talkfx.co
发表于:2022-12-29 02:37只看该作者
5楼
你这个是股票用编程语言吗?
感觉在MT4上通编程也可以实现等价K线,估计比较麻烦一些,要自己画K线。
韬客社区www.talkfx.co