Warning: preg_match() [function.preg-match]: Compilation failed: nothing to repeat at offset 38 in /kunden/168984_32108/webseiten/multi-seo-phpbb/foren/search.php on line 1063
|
|
Informationen über length |
Burton Cycle Tools |
Verfasst am: 15.09.2008, 14:13 Aufrufe: 2024
com/members/viewforum.php?f=15 Fall mentorships are set to begin starting in October. The mentorships are 3 months in length after which you have the opportunity to join the Burton Trading Group. Live viewing sessions will be held this coming week and the following week for those interested in observing the 'Cycle Tools' running in real-time with Trace Burton commentary. Details regarding the upcoming viewing sess ...
|
Digitale Stochastik |
Verfasst am: 08.08.2008, 01:19 Aufrufe: 1354
at (C) Copyright 2008 ********************************************************************/ Length=Param("Length", 5, 1, 100, 1); KAdjust=Param("KAdjust", 3, 1, 100, 1); DAdjust=Param("DAdjust", 3, 1, 100, 1); KAdjusted = StochK(KAdjust, Length); DAdjusted = StochD(DAdjust, Length); //{ Digitalisierung } summ=IIf((22*KAdjusted+8*DAdjusted)/30 >50, 1, -1); Plot(WMA(summ,Length), "Stoch.
|
Digitale Stochastik |
Verfasst am: 05.08.2008, 09:34 Aufrufe: 1796
at (c) Copyright 2008 ********************************************************************} Input: Length(5), KAdjust(3), DAdjust(3); Variables: KAdjusted(0), DAdjusted(0),summ(0); KAdjusted = SlowKClassic(KAdjust, Length); DAdjusted = SlowDClassic(DAdjust, Length); { Digitalisierung } if (22*KAdjusted+8*DAdjusted)/30 >50 then summ=1; if (22*KAdjusted+8*DAdjusted)/30 Length Then Plot1(xaverage(summ,Length), " ...
|
Waverunner Replica |
Verfasst am: 23.04.2008, 17:33 Aufrufe: 825
Input: Length(5), KAdjustI1(15),KAdjustI2(27),KAdjustI3(42),KAdjustI4(67), OverBought(80), OverSold(20); Variables: KAdjustedI1(0),KAdjustedI2(0),KAdjustedI3(0),KAdjustedI4(0) ; KAdjustedI1 = SlowKClassic(KAdjustI1, Length); KAdjustedI2 = SlowKClassic(KAdjustI2, Length); KAdjustedI3 = SlowKClassic(KAdjustI3, Length); KAdjustedI4 = SlowKClassic(KAdjustI4, Length); Plot1(KAdjustedI1, "OscI1");Setplotcolor(1,Red); ...
|
RMO |
Verfasst am: 08.04.2008, 13:45 Aufrufe: 2756
2007 09:53 @All, In MS10 ist noch ein RMO-SwingExit-Indikator enthalten: Weis jemand wie der berechnet wird ? Letztes Update: Das ist der MS-Code EXIT Swing Signal (Sum(RSI(13)-LLV(RSI(13),10),3)/Sum(HHV(RSI(13),10)-LLV(RSI(13),10),3))*100; 25; 75 Ich habe ihn in TS so umgesetzt: inputs: Length(13); variables: MyRSI(0); MyRSI=RSI(c,Length); value1= Lowest(MyRSI,10); value2= Highest(MyRSI,10); value3= ( ...
|
Stacktrade |
Verfasst am: 28.10.2007, 17:43 Aufrufe: 587
VWAP_SMA { VWAP SMA } input: Price(NumericSeries),length(NumericSimple); vars: PV( 0), Vol( 0), dayBar1( 0), len( 0), it( 0); if date date[ 1 ] then dayBar1 = barNumber; len = MinList(BarNumber-dayBar1,length); PV = price * Ticks; Vol = Ticks; value1 = summation(Vol,len); if value1 0 then it=summation(PV,len)/value1 else it=Price; VWAP_SMA = it; mit Funktion Summation ...
|
Stacktrade |
Verfasst am: 20.10.2007, 15:56 Aufrufe: 587
Hier meine Replica, einzig die Farberkennung von dem mittleren Band stimmt noch nicht, da sie aber keine Rolle bei den Setups spielt, bin ich zu faul da noch zu ermitteln:
Für Ind:
<pre>
input:
Price(AvgPrice),lengthSR(25),LengthSt1(20), TrigAvg(5), LengthThick(35),
upColor1(cyan),dnColor1(magenta),UpColor(blue), DnColor(red);
vars:
it(0);
//SR_Line
it = VWAP_SMA(Price,lengthSR);
...
|
FX SRDC |
Verfasst am: 05.03.2007, 16:52 Aufrufe: 1102
@Fisch Versuch mal mit dem Hull MAvg, ich werde heute Abend auch probieren: ####################### {jtHMA - Hull Moving Average Function} {Author: Atavachron} {May 2005} Inputs: price(NumericSeries), length(NumericSimple); Vars: halvedLength(0), sqrRootLength(0); { Original equation is: --------------------- waverage(2*waverage(close,period/2)-waverage(close ,period), SquareRoot(Period ...
|
Empfehlung |
Verfasst am: 10.04.2006, 15:27 Aufrufe: 1223
//Type : Indicator, Name : HI LO Activator //"Robert Krausz Hi-Lo activator" meta:subchart(false); Inputs: length( 5); Var: Swing( 0); Value1=Average(H,length); Value2=Average(L,length); If C<Value2[ 1] And C[ 1]>=Value2[2 ] then Swing=-1; If C>Value1[ 1] And C[ 1]<=Value1[2 ] then Swing=1; If Swing=1 Then Begin drawsymbol(Value2,"+Buy ",symbolcircle,7,blue,blue); drawforest(o,c,"++","+",thick,blu ...
|
Dynamischer GD |
Verfasst am: 22.03.2006, 12:51 Aufrufe: 662
Funktion LinearRegSlope inputs: Price( numericseries ), Length( numericsimple ) ; variables: oLRSlope( 0 ), oLRAngle( 0 ), oLRIntercept( 0 ), oLRValue( 0 ) ; Value1 = LinearReg( Price, Length, 0, oLRSlope, oLRAngle, oLRIntercept, oLRValue ) ; LinearRegSlope = oLRSlope ; und Funktion LinearReg { Linear Regression multiple-output function; see MULTIPLE-OUTPUT FUNCTIONS note below } inputs: Price( numeric ...
|
Anwendung des Safe-Zone-Stops |
Verfasst am: 07.02.2006, 20:26 Aufrufe: 3354
Inputs : Series(Close), Ratio( 1), Art( 0), Forward( 2), Back( 2), ColorDwn( red), ColorUp( Blue), BackColor( black), {Color equals the back color of your chart} LineWidth( 1), Length( 5); Variables : LongStop( 0),Lstop( 0),ShortStop( 0),Sstop( 0), CloseX(0 ), HighX( 0), LowX(0 ), DataInput(0 ); {Using a moving average can produce better results and less }{whipsaws, use ...
|
Grobtest für Zielerreichungen |
Verfasst am: 09.12.2005, 16:46 Aufrufe: 1065
|
Grobtest für Zielerreichungen |
Verfasst am: 09.12.2005, 16:13 Aufrufe: 1065
@Fisch, dieser Code war mal in S&C veröffentlicht Inputs: Length(14); Vars: SL(0), SH(0), PL(0), PU(0), PB(0); SL=LinearRegSlope(Low,Length); SH=LinearRegSlope(High,Length); For Value1=1 to Length begin Value2=Low[Value1-1]+(SL*Value1-1); Value3=High[Value1-1]+(SH*Value1-1); If Value1=1 then begin PL=Value2; PU=Value3; End; If Value2<PL then PL=Value2; If Value3>PU then PU=Value3; End; PB=200*(PU-PL)/(PU+PL); ...
|
BUFU 23.11.05 Prognose |
Verfasst am: 24.11.2005, 00:27 Aufrufe: 837
|
|
|
|