Teknik Analiz Dünyasına Hoşgeldiniz. Paylaşmak Güzeldir.

Yayından kaldırmak istediğiniz formüller için algoritmabul@gmail.com ile iletişime geçebilirsiniz... 

  • DİKKAT: Formüller, Sistemler sadece eğitim amaçlıdır. Alım satım, olası anapara kaybı ve diğer kayıplar dahil olmak üzere "YÜKSEK RİSK" içerir.

wave

  1. algoritma

    Oscillator Elliot Wave Elliot Wave Count Elliot Wave Signals by Jose Silva

    Elliot Wave Elliot Wave Count Elliot Wave Signals by Jose Silva { User input } pr:=Input("Elliot Wave minimum % move", .001,100,2); { Beginner Elliot Wave stuff } EWpk:=PeakBars(1,H,pr)=0; EWtr:=TroughBars(1,L,pr)=0; { Intermediate Elliot Wave stuff } zz:=Zig(C,pr,%); zzHi:=Zig(H,pr,%)...
  2. algoritma

    Oscillator Wave trend oscillator

    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...
  3. algoritma

    Oscillator Tema PV Binary Wave

    PV Binary Wave · To: "Francois Martin" <francoisma@xxxxxxxxx>, "Metastock" <metastock@xxxxxxxxxxxxx> · Subject: PV Binary Wave · From: "Jim Greening" <JimGinVA@xxxxxxxxxxxxx> · Date: Sat, 22 Aug 1998 18:25:34 -0400 · Reply-To: metastock@xxxxxxxxxxxxx · Sender: owner-metastock@xxxxxxxxxxxxx...
  4. algoritma

    İndikatör Short Volume Wave

    Short Volume Wave if(oscv(1,50,S,%),>,0, if(V,>,ref(V,-1),1,0),0) Source / From: http://www.paritech.com
  5. algoritma

    İndikatör Sine Wave

    This is a 28 period sine wave. The "flaw" is that it starts from the first period loaded in the chart rather than an absolute date. Change the -12 to shift the wave right or left. Sine Wave Ref(Sin( Cum(360/28) ), -12) There's also MetaStock's built-in cycle lines drawing tool. from...
  6. algoritma

    Hareketli Ortalama Sine Weighted Moving Average by Patrick E. Lafferty

    June 1999 TASC Traders Tip - How Smooth is Your Data Smoother? (Sine-Wave Weighted Moving Average) {#&} The article "How Smooth is Your Data Smoother", by Patrick E. Lafferty, reviews differenttypes of moving averages, including a Sine-Weighted Moving Average. The Sine-Weighted Moving Average...
  7. algoritma

    Oscillator Onno's Binary Wave Indicator

    Re: can metastock do flip flops? . To: metastock@xxxxxxxxxxxxx . Subject: Re: can metastock do flip flops? . From: AL NEUBAUER <neubauer@xxxxxxxxxxxxxxxxxxxxxx> . Date: Sat, 10 Oct 1998 17:43:04 -0400 . References: <199810101906.VAA20112@xxxxxxxxxxxxxxx> . Reply-To: metastock@xxxxxxxxxxxxx ...
  8. algoritma

    İndikatör AMA Binary Wave

    AMA Binary Wave Periods:=Input("Time Periods",1,1000,10); Direction:=CLOSE-Ref(CLOSE,-periods); Volatility:=Sum(Abs(ROC(CLOSE,1,$)),periods); ER:=Abs(Direction/Volatility); FastSC:=2/(2+1); SlowSC:=2/(30+1); SSC:=ER*(FastSC-SlowSC)+SlowSC; Constant:=Pwr(SSC,2)...