Welcome to the new Traders Laboratory! Please bear with us as we finish the migration over the next few days. If you find any issues, want to leave feedback, get in touch with us, or offer suggestions please post to the Support forum here.
-
Content Count
466 -
Joined
-
Last visited
Content Type
Profiles
Forums
Calendar
Articles
Everything posted by aaa
-
DeMark Indicators TD Waldo Patterns TD Waldo 02 http://www.traderslaboratory.com/forums/f46/td-waldo-02-a-8125.html
-
// Name : Waldo Pattern 03 // Author : Tom Demark // Version : 1.0 // Date : 20100828 Demark Indicators by Jason Perl Page 172 http://www.amazon.com/DeMark-Indicators-Bloomberg-Market-Essentials/dp/1576603148 Identify bars that have a range twice the range of the previous bar add/subtract that value to the close of that bar The high/low of the previous bar must be above/below the high 2 bars earlier. Moves such as these are often associated with short-term retardation of a trend or consolidation following a period of strength/weakness Inside the archive file - TD WALDO 03.ELD => TradeStation - TD Waldo 03.pla => MultiCharts - TD Waldo 03.txt - TD Waldo 03 - Video.exe => AutoExec Audio/Video 4 offLine vizualisation and sharing with others. TD Waldo 03.zip
-
Hi sr100 Well... it doesn't work 4 many reasons IMO First U should define the rules like in this example below { Entry Rules 1. RSI(14) must be above 50. 2. DMIPlus(10) must be above DMIMinus(10) 3. If above conditions are fulfilled, buy at today's close + 5 ticks stop Exit Rules 1. $1,500 money management stop. 2. Lowest low of last 10 days trailing stop. }
-
- Question from a PM I answer on the forum 4 the benefit of the community ************************* ************************ If pp can deal with 1 bar delay it should work in all Data feed B aware that noplot function erase only the intrabar false signal So in this code below it could not erase the false signal 1 bar back plot1[1](h[1] + Offset, "Waldo02 High"); This limitation in the code should generate many false signals And I dono how 2 avoid that, except reload the chart at each bar :=( ***********************
-
Hi UmaBlume HeyHey ! they look veryvery nice ! U're lucky 2 have 2 of them ! Yes they are very nice dogs and very kind with the children and with the other animals. Mine is one of the happiest and the most player of the world. It actually thinks only about having fun and to be happy. Best regards **
-
*************************** Here it is LNR 4 pp not very good at all with paisting indicators in multicharts.pla
-
Hi TAMS ThanX 2 share with us your work ; It's an Xcellent concept tested with succes on TS ! PP can download it in TS format (ELD) from the link below Best regards aaa ********************************* C also these MA TAMS' nice indic => Red Light / Green Light http://www.traderslaboratory.com/forums/f46/red-light-green-light-5848.html MA ribbon http://www.traderslaboratory.com/forums/f46/ma-ribbon-6992.html MAMA Combo http://www.traderslaboratory.com/forums/f46/mama-combo-5851.html DIGIBOARD.ELD
-
Hello http://en.wikipedia.org/wiki/Kendall_tau_rank_correlation_coefficient The Kendall τ coefficient is defined as: Algorithms pseudo-code numer := 0; for i:=1..N do for j:=1..(i-1) do numer := numer + sgn(x_i-x_j)*sgn(y_i-y_j); return numer; **************************** M(L,R) := { n := |L| + |R|; i := 1; j := 1; nSwaps := 0; while (i+j <= n) do ( if i>|L| or R[j] < L then nSwaps := nSwaps + |L|- (i-1); j := j + 1; else i := i + 1; end if ); return nSwaps; }
-
Tams & UmaBlume You surf on the same wave ! This is a very smart view of what is behind the volume transaction
-
Question from a Visitor Message I answer on the forum 4 the benefit of the community ************************************************* Short-Term Capital Management Site http://short-termcapitalmanagement.blogspot.com/2009/09/demark-indicators.html Each link will contain a description and explanation of what the indicator attempts to measure and what values it uses to determine the output of the indicator Most of the NinjaScripts code on this site is intended for strategies, not indicators. It is in the process of updating all the code examples ************************************************* DeMark Indicators Most Popular TD Setup TD Countdown TD Sequential TD Aggressive Sequential TD Sequential 9-13-9 [*]TD Combo [*]TD D-Wave [*]TD Entry Signals TD Price Flip TD Camouflage TD Clop TD Clopwin TD Open TD Trap [*]TD Retracement Levels TD Fibonacci Levels TD Magnet Price TD Absolute Retracement TD Trend Factors TD Propulsion TD Lines TD Points TD Demand Point TD Supply Point [*]TD Oscillators TD Range Expansion Index (TD REI) TD DeMarker I TD DeMarker II TD Pressure TD Rate of Change TD Alignment [*]TD Momentum Indicators TD Moving Average I TD Moving Average II TD Range Projection TD Tolerance Levels TD Range Expansion Breakout (TD REBO) TD Channel I TD Channel II TD Differential TD Reverse Differential TD Anti-Differential [*]TD Waldo Patterns TD Waldo Pattern 2 TD Waldo Pattern 3 TD Waldo Pattern 4 TD Waldo Pattern 5 TD Waldo Pattern 6 TD Waldo Pattern 7 TD Waldo Pattern 8
-
- Question from a PM I answer on the forum 4 the benefit of the community - Dots appears with " only " 1 bar delay plot1[1](h[1] + Offset, "Waldo02 High"); plot2[1](l[1] - Offset, "Waldo02 Low"); See also http://www.traderslaboratory.com/forums/f46/repainting-8251. How 2 delay a signal with EasyLanguage When applying the analysis technique to a chart, you can displace the plot to the right or left. For example: Plot1[3](Value1); The above example calculates the plot value using the current bar but draws it on the chart 3 bars ago. Use a negative number to draw the value 3 bars ahead of the current bar.
-
TAMS has 936 "else" = Thanks from Sep 2008 for his usefull posts. 936 + 1 " for free " from me now for his sens of humour = 937
-
How can we avaoid this kind of problem in programming Tradestation I'm not sure about what U want Could U post pix please ? Is it about that ? = > If the ShowMe/PaintBar study condition becomes true during the bar, but is not true at the end of the bar, the mark is removed. Example The following ShowMe study marks the low of a gap down bar, but removes the mark if the condition is no longer true for the bar: If High < Low of 1 Bar Ago Then Plot1(Low, "GapDown") Else NoPlot(1) ; Additional Example If you wanted to mark the high of a bar when the condition Close > Close[1] is true, but remove the mark if Close > Close[1] is not true for the next bar, you could use the following syntax: If Close > Close[1] Then Plot1(High, "CloseUp") Else NoPlot(1);
-
Hi It is cracked TPO Pro5.0b Try These ones + Trading Methods.pdf here http://www.traderslaboratory.com/forums/f46/market-profile-1-71-a-7746.html#post93968
-
Hi Michael Here is a 2 cents suggestion Put multiple copys of an indicator with different input on your preferate graph ( Move.Bars( xx ), Previous.Bars( xx ) ) Change colors 2 identfy them Now choose the values which gives you best result according 2 your trading style rgds
-
http://books.google.com/books?id=GZtlA991lNYC&pg=PT199&lpg=PT199&dq=demark+waldo&source=bl&ots=GsiDAoHonR&sig=nKmYjAteHAV1_DxVu20rxx3uuqU&hl=en&ei=yLIFS7vCBoH_nAfd5PjJCw&sa=X&oi=book_result&ct=result&resnum=5&ved=0CBAQ6AEwBA#v=onepage&q=demark%20waldo&f=false Pattern Two: The market records a fresh high or low for a move, but closes higher than the four previous closes (for a potential base) OR The market closes lower than the four previous closes (for a potential top) OR The close of the trend high is greater than the previous price bar, or the close of the trend low is less than or equal to the previous price bar AND A down close occurs after a high or an up close occurs after a low, and the close following the high is greater than the close prior to the high, or the close following the low is less than the close prior to the low.
-
Hi Michael Sorry if U're desappointed Have U tweaked the Move.Bars( xx ), Previous.Bars( xx ), according 2 your chart ? But U're right = people must B aware that my video is not a good example. Such a perfect precision arrives very rarely. I should have posted a more realistics pic like that one below rgds
-
// Name : Waldo Pattern 02 // Author: Tom Demark // Version: 1.0 // Date: 20100627 Demark Indicators by Jason Perl Page 171 Bloomberg Press 2008 http://www.amazon.com/DeMark-Indicators-Bloomberg-Market-Essentials/dp/1576603148 TD WALDO 02.ELD TD Waldo 02.pla TD Waldo 02.txt
-
hola miguel El capítulo 10 del libro del Sr. Carter explica claramente las reglas del trading Saludos
-
Hi Hunter U've posted 9 days ago w/o any reply... 2 sad ... I suggest a more structured method 2 have a chance 2 get help here - Say your level in programming - Xplain shortly the framework of your question - Say where comes from your code - Define clearly your goals A) print the previous bars high low close B) close in a 16 sized text color yellow C) text prints in the upper right corner of the chart - Reformat seperate and comment each part of your code - Learn each function in your manual - Understand the logic behind - Xperiment different parameters and watch the result on the screen - Use the search field 2 find equivalent questions in the forum - Go back 2 your thread with the result of your personnal work - Ask only 1 short + precise + illustrated ( picture, mockup, ...) question at a time - If nobody answers after a while try again in a different way 2 move up your thread IMO these suggestion will show your motivation 2 find the solution and will motivate PP 2 help U regards
-
ThanX TAMS So quick !!!! How can we do w/o U ????????? If we give U 1 $ 4 each solution U give U shoud B millionaire ! ******************************** NumtoStr( AbsValue( 31 / - 18 ), 2 ) ; = 1.72 *********************************** AbsValue Returns the absolute value of the specified numerical expression. Usage AbsValue(Value) Where: Value - a numerical expression Examples AbsValue(45.275) will return a value of 45.275 AbsValue(-1385) will return a value of 1385
-
Hi I wish 2 change an always negative result 2 a positive one example B4 NumtoStr(31 / - 18, 2); = - 1.72 After (NumtoStr( ( 31 / - 18 ) something here, 2 ); = 1.72 I've tried 2 multiple by - 1 w/O result ThanX
-
Would that be possible for this indicator where it plots the potential divergence as its happening rather than after the fact? With pivot function, I'm afraid that not less than 1 bar on the right side of the pivot bar... The Pivot function returns the value of a pivot point and the number of bars ago the pivot occurred. RightStrength = Sets the required number of bars on the right side of the pivot bar. ******************************** But keep "optimistic", as TAMS wrote anything is POSSIBLE if you can visualize it, quantify it, articulate it, you can code it.
-
I'll try changing the right strength to 2, why not use 1? Put 3 charts on the same screen Put right strength to 1 Put right strength to 2 Put right strength to 3 in each screen and choose the one which suits U best
-
It is "normal" Unfortunately pivot is not a RT function Suggestion RightStrength(2), try 2 put 2 and U'll have 2 wait 2 bars instead of 3 ************************** The PPivot function returns the value of a pivot point and the number of bars ago the pivot occurred. RightStrength Numeric Sets the required number of bars on the right side of the pivot bar. ************************************* aaa ************************* PS I'm wondering how 2 trade if we have 2 wait 3 bars (45 mns delay in your resolution) 2 have a signal ?! Same problem with Carter scalper After Observing during a long time a market, we can visualy anticipate a divergence with prior signs IMO it's interesting 2 put an order at The anticipated level at the opposite of the trend (A kangourou tail where traders changing position) and after waiting 4 a div or any kind of other confirmation or exit with a quick profit If it works, it's like a lift rocket ! But it is risky Bcoz we can get killed many times B4 it works And then A traders enters after, when the divergence signal is confirmed B There is a DT/DB and it was an 2 early entry C Or the trend keep going and the stop is reached Not easy At the end it's a matter of observation and intuitive quick decision + strong stomach ******************************** On your graph we can C a kangourou trail ( in fact 1 + 1 the second one killed the first one) a lift rocket DB with certainly a divergence and then the trend changes at the broken line where there was certainly a lot of stop buy orders above So what should we do after 1:00 AM ? Take profit ? Trust in the hidden div and hold our position ?