Thomas DeMark Sequential System

Answer to Q1: Its an OR condition. Either 8th or 9th (or both)

Answer to Q2: Yup. It is actually fairly logical when you think about it.
Dear Mastermind

Thanks for your answers. Regarding my Q1, its an OR condition considering either day 8 or day 9. What about the condition for satisfying that the High of day 8 or 9 needs to be greater or equal to the lows of days 3 to 7. Is it to satisfy the max low between days 3 to 7 or any low of days 3 to 7.

Thanks
 
Dear Mastermind

Thanks for your answers. Regarding my Q1, its an OR condition considering either day 8 or day 9. What about the condition for satisfying that the High of day 8 or 9 needs to be greater or equal to the lows of days 3 to 7. Is it to satisfy the max low between days 3 to 7 or any low of days 3 to 7.

Thanks
SEQUENTIAL BUY BASICS
Setup rules C < Ref(C,-4) // NOT <=
Intersection Ref(LLV(L,5),-2) < HHV(H,2) // on 9th Setup Candle. Not <=
Countdown C < Ref(L,-2) // // Not <=
 
Hello boys,
I am looking for Demark's sequential for metatrader...or for someone able to code it.
I have just 2-3 indicators found on web....but they are incompleted.
I use Demark's sequential since 10 years and I think it is a powerfull tool.....if you are interested I can share my experience......
please read this:

http://www.forex-tsd.com/metatrader-4/62992-here-demarks-sequential.html

thank's in advance
Welcome to this forum. I have been using DeMark Sequential and Combo for number of years. I find that Set ups, TDST and Power of 9 also are very useful even in daytrades for booking profits.

Dont have Metatrader code, but have 1-2 Amibroker AFLs which draw set ups.


Smart_trade
 
Welcome to this forum. I have been using DeMark Sequential and Combo for number of years. I find that Set ups, TDST and Power of 9 also are very useful even in daytrades for booking profits.

Dont have Metatrader code, but have 1-2 Amibroker AFLs which draw set ups.


Smart_trade
st sir if u dont have any problem can u share it.
 
Welcome to this forum. I have been using DeMark Sequential and Combo for number of years. I find that Set ups, TDST and Power of 9 also are very useful even in daytrades for booking profits.

Dont have Metatrader code, but have 1-2 Amibroker AFLs which draw set ups.


Smart_trade
st sir if u dont have any problem can u share it.
i have this afl for td

_SECTION_BEGIN("TD sequential setup");
// TD Sequential Setup
Plot( C, "Price", colorBlack, styleCandle );
y = ParamField("Price field");

Buy = Sum( y < Ref( y, -4 ), 9 ) == 9 AND Ref( y, -9) > Ref( y, -13 );
Sell = Sum( y > Ref( y, -4 ), 9 ) == 9 AND Ref( y, -9) < Ref( y, -13 );

PlotShapes( Buy * shapeUpArrow + Sell * shapeDownArrow, IIf( Buy, colorGreen, colorRed ), 0, IIf( Buy, L, H ) );
//LISTING 2
// Ermanometry
Plot( C, "Price", colorBlack, styleCandle );
dt = DateTime();
Start = dt == SelectedValue( dt );

EF = Param("Seed Seg EF", 48, 1, 900 );
DE = Param("Seed Seg DE", 40, 1, 900 );

Ratio = EF/DE;
InverseRatio = 1/Ratio;

x = BarsSince( start );
CD = DE * Inverseratio;
BC = CD * Inverseratio;
AB = BC * Inverseratio;
FG = EF* Ratio;
GH = FG * Ratio;
HI = GH * Ratio;
IJ = HI * Ratio;

FH = sqrt( FG * FG + GH * GH );

Erman =
x == int(FH) OR /* Erman */
x == int(GH) OR /* Erman */
x == int(HI) OR /* Erman */
x == int(IJ) OR /* Erman */
x == int(DE+EF+CD) OR /* Erman */
x == int(GH+HI+IJ) OR /* Erman */
x == int(CD+DE+EF+FG+GH+HI) OR /* Erman */
x == int(EF+FG+GH) OR /* Erman */
x == int(CD+DE+EF+FG+GH) OR /* Erman */
x == int(CD+DE+EF+FG+GH+HI) OR /* Erman */
x == int(GH+IJ+CD+AB+EF); /* Erman */

Plot( Erman, "Erman", colorRed, styleHistogram | styleOwnScale );

FH = sqrt( FG * FG + GH * GH );

Coles =
x == int(FH+FG+GH) OR /* Coles */
x == int(AB+BC+CD+DE) OR /* Coles */
x == int(AB+BC+CD+DE+GH) OR /* Coles */
x == int(FG+GH) OR /* Coles */
x == int(GH+HI) OR /* Coles */
x == int(FG+BC+CD) OR /* Coles */
x == int(FG+BC+CD+DE) OR /* Coles */
x == int(CD+BC) OR /* Coles */
x == int(DE+BC) OR /* Coles */
x == int(sqrt(CD*CD+DE*DE)+CD+DE) OR /* Coles */
x == int(sqrt(EF*EF+FG*FG)+EF+FG); /* Coles */

Plot( Coles, "Coles", colorGreen, styleHistogram | styleOwnScale );


_SECTION_END();
 
Last edited:
Hi Smart Trade,
sorry but I don't use Amibroker....
I use TD setup 9 and sequential in multitimeframes in conjunction with divergences with stochastic 5-3-3.
First of all I open 1-3-5-15-30-60-240 charts.
Once a divergence or setup 7-8-9 is forming on (for example 30 minutes chart),I look for another divergences or another setup or 123 low on 1 minutes chart or 3 or 5.
So...I have the advantage that the big time frame is inverting and the minor time frame give me the timing to enter the market.
A lot of people dislike Demark's setup but I found that this indicator is the better to catch inversions!
 
Can you post a graph about your divergences please

tks
Hello,
some years ago I wrote for a friend of mine a little explanation on using divergences on multitimeframes...........
From those years nothing change but my simple moving average...now I use 15-71 and not 15-60....
please read my word file at this link:http://www.forex-tsd.com/indicators-expert-systems-tools/8024-stochastic-oscillator-47.html
post n 462
you need google traslator...my language is italian.....
 

Similar threads