0 beğenilme 0 beğenilmeme
87 kez görüntülendi

TradingViewda olan wavetrend indikatörü matrikste mevcut mu? Yoksa nasıl oluşturabiliriz?

İndikatör Pozisyonları ve Değerleri kategorisinde (62 puan) tarafından | 87 kez görüntülendi

1 cevap

0 beğenilme 0 beğenilmeme
Merhabalar,

Aşağıdaki şekilde deneyebilirsiniz,

WAVE TREND OSCILLATOR MATRİKS FORMÜLÜ

n1:=Input("Channel Length",1,500,10);
n2:=Input("Average Length",1,500,21);
obLevel1:=Input("Over Bought Level 1",1,500,60);
obLevel2:=Input("Over Bought Level 1",1,500,53);
osLevel1:=Input("Over Sold Level 1",-500,-1,-60);
osLevel2:=Input("Over Sold Level 1",-500,-1,-53);
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
obLevel1;
obLevel2;
osLevel1;
osLevel2;
wt1;
wt2;
wt1-wt2;
0

WAVE TREND OSCILLATOR AL VERENLER:

n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt1,wt2)

WAVE TREND OSCILLATOR DİPTE AL VERENLER:

n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt1,wt2) and valuewhen(1.,cross(wt1,wt2),wt2)<-53

WAVE TREND OSCILLATOR SAT VERENLER:

n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt2,wt1)

WAVE TREND OSCILLATOR TEPEDE AL VERENLER:

n1:=10;
n2:=21;
ap:=(H+L+C)/3;
esa:=mov(ap,n1,e);
d:=mov(abs(ap - esa),n1,e);
ci:=(ap-esa)/(0.015*d);
tci:=mov(ci,n2,e);
wt1:=tci;
wt2:=mov(wt1,4,s);
cross(wt2,wt1) and valuewhen(1.,cross(wt2,wt1),wt2)>53
(34,138 puan) tarafından
9,293 soru
9,249 cevap
5,063 yorum
31,735 kullanıcı