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.

volume

  1. algoritma

    Oscillator Klinger Volume Oscillator KVO by Stephen Klinger

    Klinger Volume Oscillator KVO by Stephen Klinger TrigLen:=input("Trigger Periodu",1,100,13); FastX:=input("Kısa EMA",1,300,34); SlowX:=input("Uzun EMA",1,500,55); xTrend:=if((H+L+C)/3>ref((H+L+C)/3,-1),V,-V); xFast:=mov(xTrend,FastX,e); xSlow:=mov(xTrend,SlowX,e); KVO:=xFast-xSlow...
  2. algoritma

    Oscillator Volume Rate of Change Indicator (VROC)

    Volume Rate of Change Indicator (VROC) ((v-ref(v,-14))/ref(v,-14))*100
  3. algoritma

    İndikatör Anti Volume Stop Loss by ilkertufekci

    Anti Volume Stop Loss by @ilkertufekci VWmaS:= sum(c*v,26)/sum(v,26); AvgS := MOV(C,26,S); VPC := VWmaS - AvgS ; VWmaF:= sum(c*v,12)/sum(v,12); AvgF := MOV(C,12,S); VPR := VWmaF/AvgF ; VM:= MOV(V,12,S) / MOV(V,26,S); VPCI:= VPC* VPR*VM; DeV:= 2.0* (VPCI * VM); lenV1:= IF(VPC<0...
  4. algoritma

    İndikatör Volume Price Confirmation Indicator VPCI

    Volume Price Confirmation Indicator VPCI Between Price and Volume Buff Dormeier’s article, “Between Price and Volume” describes the calculation and use of the Volume Price Confirmation Indicator (or VPCI). The formula for this indicator and the instructions on adding it to MetaStock are...
  5. algoritma

    İndikatör Volume analysis Roy Larsen

    Volume analysis Roy Larsen Sd:=Input("Start Day" ,1,31,1); Sm:=Input("Start Month",1,12,1); Sy:=Input("Start Year" ,1980,2010,2006); Ed:=Input("End Day" ,1,31,31); Em:=Input("End Month" ,1,12,12); Ey:=Input("End Year" ,1980,2010,2006); Start:=(DayOfMonth()>=Sd AND Month()=Sm AND...
  6. Bogac

    İndikatör VOLUME WEİGHTED MACD VERSİON2

    KPD:=Input("Kısa Period",1,500,12); UPD:=Input("Uzun Period",1,500,26); SPD:=Input("Sinyal Period",1,500,9); KVWMA:=mov(c*v,KPD,e)/mov(v,KPD,e); UVWMA:=mov(c*v,UPD,e)/mov(v,UPD,e); VWMACD:=KVWMA-UVWMA; Trigger:=mov(VWMACD,SPD,E); Histogram:=VWMACD-Trigger; VWMACD; Trigger; Histogram;0
  7. Bogac

    İndikatör VOLUME WEİGHTED MACD

    KPD:=Input("Kısa Period",1,500,12); UPD:=Input("Uzun Period",1,500,26); SPD:=Input("Sinyal Period",1,500,9); KVWMA:=sum(c*v,KPD)/sum(v,KPD); UVWMA:=sum(c*v,UPD)/sum(v,UPD); VWMACD:=KVWMA-UVWMA; Trigger:=mov(VWMACD,SPD,E); Histogram:=VWMACD-Trigger; VWMACD; Trigger; Histogram;0
  8. algoritma

    Oscillator Volume Accumulator (Chaikin)

    Volume Accumulator (Chaikin) Mov((V*(((C-L) - (H-C))/(H-L))),5,S) Source / From: ???
  9. algoritma

    Oscillator Volume-Weighted MACD Histogram by David Hawkins

    Here is the MetaStock code to implement the Volume-Weighted MACD Histogram from David Hawkins' article in this issue, "Volume-Weighted MACD Histogram". Volume-Weighted MACD Histogram PeriodS:=Input("Enter short period",1,500,12); PeriodL:=Input("Enter long period",2,501,26)...
  10. algoritma

    Oscillator Time Segmented Volume TSV

    Re: Time Segmented Volume · To: metastock@xxxxxxxxxxxxx · Subject: Re: Time Segmented Volume · From: Mike Campbell <ug@xxxxxxxxxxxx> · Date: Wed, 16 Aug 2000 06:19:03 -0700 (PDT) · In-Reply-To: <F772PVUlT3XIhFTN6Bt000007fa@xxxxxxxxxxx> · References: <F772PVUlT3XIhFTN6Bt000007fa@xxxxxxxxxxx> ·...
  11. 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
  12. algoritma

    Tarama Price and Volume Breakout

    Shows stocks where the price increased 5% and the volume is 50% above a 50-day moving average. Rank results by % change in price, then check the volume. Price and Volume Breakout Column A CLOSE Column B Ref(CLOSE,-1) Column C ROC(CLOSE,1,percent) Column D VOLUME Column E...
  13. algoritma

    İndikatör Negative Volume Indicator

    Negative Volume Indicator Cum(If(V<Ref(V,-1),ROC(C,1,%),0)) Source / From: http://www.guppytraders.com
  14. algoritma

    İndikatör Cumulative Flosting Volume by Rick Lampkin

    Float Analysis To: <metastock@xxxxxxxxxxxxx> Subject: Float Analysis From: "Rick Lampkin" <rlam3491@xxxxxxxxxxxxxxx> Date: Sat, 20 Jan 2001 13:30:46 -0800 Reply-To: metastock@xxxxxxxxxxxxx Sender: owner-metastock@xxxxxxxxxxxxx Is there anyone on the List that uses or knows how to use Float...