Register
Welcome to Forex-TSD! , one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.
From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.
Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
Elite Section
Get access to private discussions, specialized support, indicators and trading systems reported every week.
Advanced Elite Section
For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more
10-11-2006, 12:17 PM
Senior Member
Join Date: Apr 2006
Posts: 315
TD Sequential
Hi Guys,
Has anyone got DeMark's TD Sequential indicators with full setup instructions
Thanks
Babar
10-11-2006, 05:35 PM
Senior Member
Join Date: Jul 2006
Location: There
Posts: 289
Those what i got
Regards
10-11-2006, 07:58 PM
Senior Member
Join Date: Mar 2006
Location: Dominican Republic
Posts: 683
re TD Sequential
Quote:
Originally Posted by babarmughal
Hi Guys,
Has anyone got DeMark's TD Sequential indicators with full setup instructions
Thanks
Babar
Hi Babar
See section called Applying TD Sequential....
Xard777
10-11-2006, 08:11 PM
Senior Member
Join Date: Sep 2005
Posts: 200
Last edited by lowphat; 10-11-2006 at 08:15 PM .
10-12-2006, 08:16 PM
Senior Member
Join Date: Aug 2006
Posts: 150
the td sequential mq4 indicator has the setup part, but does not cover the intersection or countdown part
10-26-2006, 12:25 PM
Member
Join Date: Apr 2006
Posts: 49
Can someone make this with all the intersection and countdown part?
01-19-2007, 12:07 AM
Senior Member
Join Date: Nov 2006
Posts: 286
Quote:
Originally Posted by TheWicker
Can someone make this with all the intersection and countdown part?
This would be good!
Would someone be so kind as to add the following to
TD Sequential_v1.mq4
- A small '9' for a setup;
- A larger '9' for a prefection setup
- The 13 bar 'Countdown' with a small '13' for a setup and large '13' for a prefection setup.
Big hugs, peace and harmony pour toi!
Last edited by Sadly; 01-19-2007 at 12:21 AM .
Reason: Link updated
01-20-2007, 12:34 AM
Senior Member
Join Date: Nov 2006
Posts: 286
OK. Here's what I've added but ....
PHP Code:
//+------------------------------------------------------------------+
//| TD Sequential.mq4 | Program code editing version
//| Copyright © 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "James OBrien"
#property link "http://www.metaquotes.net"
#property indicator_chart_window
//---- input parameters
extern int NumBars = 5000 ;
extern int Gap = 5 ;
int i ;
int num = 0 ;
int num1 = 0 ;
string textVar ;
int init ()
{
return( 0 );
}
int deinit ()
{
for( int i = NumBars ; i >= 0 ; i --)
{
ObjectDelete ( "Sq" + i );
}
return( 0 );
}
int start ()
{
for( int i = NumBars ; i >= 0 ; i --)
{
ObjectDelete ( "Sq" + i );
if( Close [ i + 1 ]< Close [ i + 5 ]) num = num + 1 ;
else num = 0 ;
if ( num > 5 && num < 10 ) {
textVar = num ;
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], Low [ i + 1 ]- Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num , 0 ), 6 , "Arial" , Gray );
ObjectsRedraw ();
}
if ( num == 9 ) {
// -------------------------------------------------------------
// Was 9th bar low, lower than bars 6 and 7?
if ( Low [ i + 1 ]< Low [ i + 2 ] && Low [ i + 1 ]< Low [ i + 3 ]) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 12 , "Arial" , Red );
ObjectsRedraw ();
}
else
// Was 8th bar low, lower than bars 6 and 7?
if ( Low [ i + 2 ]< Low [ i + 3 ] && Low [ i + 2 ]< Low [ i + 4 ]) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 12 , "Arial" , Blue );
ObjectsRedraw ();
}
// -------------------------------------------------------------
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], Low [ i + 1 ]- Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num , 0 ), 8 , "Arial" , Gray );
ObjectsRedraw ();
}
if( Close [ i + 1 ]> Close [ i + 5 ]) num1 = num1 + 1 ;
else num1 = 0 ;
if ( num1 > 5 && num1 < 9 )
{
textVar = num1 ;
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 6 , "Arial" , Gold );
ObjectsRedraw ();
}
else
// -------------------------------------------------------------
if ( num1 == 9 ) {
// Was 9th bar high, higher than bars 6 and 7?
if ( High [ i + 1 ]> High [ i + 2 ] && High [ i + 1 ]> High [ i + 3 ]) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 12 , "Arial" , Red );
ObjectsRedraw ();
}
else
// Was 8th bar high, higher than bars 6 and 7?
if ( High [ i + 2 ]> High [ i + 3 ] && High [ i + 2 ]> High [ i + 4 ]) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 12 , "Arial" , Blue );
ObjectsRedraw ();
}
// -------------------------------------------------------------
else
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 8 , "Arial" , LimeGreen );
ObjectsRedraw ();
}
}
return( 0 );
}
Last edited by Sadly; 01-20-2007 at 12:37 AM .
01-20-2007, 12:36 AM
Senior Member
Join Date: Nov 2006
Posts: 286
.... it doesn't work as I thought it would
I figure that there must be a problem with the logic????
All I have to go on is the MetaTrader Help file
01-20-2007, 03:46 PM
Senior Member
Join Date: Nov 2006
Posts: 286
Code revised but still not producing the right result
PHP Code:
//+------------------------------------------------------------------+
//| TD Sequential.mq4 | Program code editing version
//| Copyright © 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net |
//+------------------------------------------------------------------+
#property copyright "James OBrien"
#property link "http://www.metaquotes.net"
#property indicator_chart_window
//---- input parameters
extern int NumBars = 5000 ;
extern int Gap = 5 ;
int i ;
int num = 0 ;
int num1 = 0 ;
string textVar ;
int init ()
{
return( 0 );
}
int deinit ()
{
for( int i = NumBars ; i >= 0 ; i --)
{
ObjectDelete ( "Sq" + i );
}
return( 0 );
}
int start ()
{
for( int i = NumBars ; i >= 0 ; i --)
{
ObjectDelete ( "Sq" + i );
if( Close [ i + 1 ]< Close [ i + 5 ]) num = num + 1 ;
else num = 0 ;
if ( num > 5 && num < 10 ) {
textVar = num ;
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], Low [ i + 1 ]- Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num , 0 ), 8 , "Arial" , Gray );
ObjectsRedraw ();
}
if ( num == 9 ) {
// Check for perfection setup
if ( Low [ i + 1 ]<( Low [ i + 3 ] && Low [ i + 4 ]) || Low [ i + 2 ]<( Low [ i + 3 ] && Low [ i + 4 ])) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 16 , "Arial" , Red );
ObjectsRedraw ();
}
else
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], Low [ i + 1 ]- Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num , 0 ), 8 , "Arial" , Red );
ObjectsRedraw ();
}
if( Close [ i + 1 ]> Close [ i + 5 ]) num1 = num1 + 1 ;
else num1 = 0 ;
if ( num1 > 5 && num1 < 9 ) {
textVar = num1 ;
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 6 , "Arial" , Gold );
ObjectsRedraw ();
}
if ( num1 == 9 ) {
// Check for perfection setup
if ( High [ i + 1 ]>( High [ i + 3 ] && High [ i + 4 ]) || High [ i + 2 ]>( High [ i + 3 ] && High [ i + 4 ])) {
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 12 , "Arial" , Red );
ObjectsRedraw ();
}
else
ObjectCreate ( "Sq" + i , OBJ_TEXT , 0 , Time [ i + 1 ], High [ i + 1 ]+ Gap * Point );
ObjectSetText ( "Sq" + i , "" + DoubleToStr ( num1 , 0 ), 8 , "Arial" , LimeGreen );
ObjectsRedraw ();
}
}
return( 0 );
}
Tags
TD Sequential , td sequential mq4 , TD Sequential.mq4 , td combo metatrader , td combo mt4 , demark sequential , td sequential indicator , td combo , td combo mq4 , td sequential mt4 , td sequential trading system , cTD sequential , sequential , TD Sequential EA , TD-Sequential System , td sequential metatrader , metatrader td sequential
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
Thread Tools
Display Modes
Linear Mode
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
All times are GMT. The time now is 01:53 PM .