Forex



Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems
Forex Forum Register More recent Blogs Calendar Advertising Others Help






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

Reply
 
Thread Tools Display Modes
  #21 (permalink)  
Old 01-20-2006, 01:04 PM
leutzuro's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 318
leutzuro is on a distinguished road
i dont know how you use this because the line is changing all the time
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #22 (permalink)  
Old 01-20-2006, 02:33 PM
Junior Member
 
Join Date: Dec 2005
Posts: 15
SpecII is on a distinguished road
Hi,

I enter in the horizontal lines and my TP is when the indicator shown in the chart.
I enter when the 1 Bar is closed above or below of the price .I dont use SL .I use reversal only.


Cheers
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #23 (permalink)  
Old 01-22-2006, 11:51 AM
leutzuro's Avatar
Senior Member
 
Join Date: Jan 2006
Posts: 318
leutzuro is on a distinguished road
i dont know how works for you because when i plot the indicator i have some target and later when the trend is changing i have another targer
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #24 (permalink)  
Old 01-23-2006, 01:21 AM
Junior Member
 
Join Date: Oct 2005
Posts: 17
Rancho is on a distinguished road
Ref: Ind-TD-Demark-3-1

A Question for MT4 programmers:
What do I change in the code to make the indicator's display text, especially the target data, a little larger? They are kinda tiny on my 17" screen and I don't want to change screen resolution.

Thanks!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #25 (permalink)  
Old 01-23-2006, 04:00 AM
Thruline's Avatar
Senior Member
 
Join Date: Dec 2005
Posts: 131
Thruline is on a distinguished road
Can someone post the REI indicator shown in post #10?

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #26 (permalink)  
Old 01-23-2006, 09:45 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,054
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Quote:
Originally Posted by Thruline
Can someone post the REI indicator shown in post #10?

Thanks.
I posted the image (post #10) from here. It is Polish website about Metastock software:


Quote:
DeMark's Indicator and REI Indicator

PUBLISHED: Page 98 and 100 of Tom Demark's new book, "The New Scienceof Technical Analysis" 1994.
COMMENTS: Note that the DeMark indicator on page 100 follows firstand iscontained in one formula only.

The REI (Range Expansion Index follows that and is contained over 5 formulas).

They could probably be compacted to one formula, but I felt that thisis more readable as Tom DeMark presents them in a similar manner.

DeMark's Indicator:
Code:
Sum(If(H, > ,Ref(H,-1),H-Ref(H,-1),0),13) /
(Sum(If(H, > ,Ref(H,-1),H-Ref(H,-1),0),13) +
Sum(If(L,>= ,Ref(L,-1),0,Ref(L,-1)-L),13))
Var1
If(Ref(H,-2),< ,Ref(C,-7),If(Ref(H,-2),<,Ref(C,-8),If(H,< ,Ref(L,-5),If(H,< ,Re f(L,- 6),0,1),1),1),1)
Var2
If(Ref(L,-2),> ,Ref(C,-7),If(Ref(L,-2),> ,Ref(C,-8),If(L,> ,Ref(H,-5),If(L,> ,Ref(H,- 6),0,1),1),1),1)

SubValues
( Fml("Var1") * Fml("Var2") * (H-Ref(H,-2))) + (Fml("Var1") * Fml("Var2") * (L-Ref(L,-2)) )

AbsDailyVal
( Abs(H-Ref(H,-2)) + Abs(L-Ref(L,-2)) )

REI Indicator

Sum(Fml("SubValues"),8) / Sum(Fml("AbsDailyVal"),8)

And for MetaStock 6.5 it should be like this:

DeMark's REI Indicator:
Code:
x1:=If(Ref(H,-2),< ,Ref(C,-7), 
If(Ref(H,-2),<,Ref(C,-8), 
If(H,<,Ref(L,-5), 
If(H,<,Ref(L,- 6),0,1),1),1),1);
x2:=If(Ref(L,-2),> ,Ref(C,-7), 
If(Ref(L,-2),>,Ref(C,-8),
If(L,>,Ref(H,-5),
If(L,>,Ref(H,- 6),0,1),1),1),1);
SubValues:=(x1) * (x2) * (H-Ref(H,-2) ) +((x1) * (x2) * (L-Ref(L,-2)) );
AbsDailyVal:=(Abs(H-Ref(H,-2)) + Abs(L-Ref(L,-2)));
Sum((SubValues),8) / Sum((AbsDailyVal),8)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #27 (permalink)  
Old 01-23-2006, 09:48 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,054
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
If somebody can convert it from Metastock to mql4 it will be very good.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #28 (permalink)  
Old 01-26-2006, 12:55 PM
Member
 
Join Date: Oct 2005
Location: Germany
Posts: 61
schwager is on a distinguished road
need help Rei

PHP Code:
//+------------------------------------------------------------------+
//|                                                          Rei.mq4 |
//|                                                 Copyright © 2005 |
//|                                                      freeware.de |
//+------------------------------------------------------------------+
#property copyright "Copyright "
#property link      "Freeware"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Red
double REIBuffer[];

int init()
  {
   
SetIndexStyle(0,DRAW_LINE);
   
SetIndexShift(0,0);
   
SetIndexDrawBegin(0,0);
   
SetIndexBuffer(0,REIBuffer);


//---- indicators
//----
   
return(0);
  }
//+------------------------------------------------------------------+
//| Custor indicator deinitialization function                       |
//+------------------------------------------------------------------+
int deinit()
  {
//---- TODO: add your code here
   
//----
   
return(0);
  }
//+------------------------------------------------------------------+
//| Custom indicator iteration function                              |
//+------------------------------------------------------------------+
int start() {
   
int limit,SubValues,AbsDailyVal,Rei;
   
int counted_bars=IndicatorCounted(),x1=0,x2=0;
   
   
   if(
counted_bars<0) return(-1);
   if(
counted_bars>0counted_bars--;
   
   
limit=Bars-counted_bars;
   
   
double avg;

   for(
int x=0x<limitx++;); 
   {
     if(
High[2]<Close[7]&&High[2]<Close[8]&& High[x]<Low[5]&&High[x]<Low[6]) x1=1;
     
     if(
Low[2]>Close[7]&&Low[2]>Close[8]&&Low[x]>High[5]&&Low[x]>High[6x2=1;
     
     
SubValues=((x1*x2*(High[x]-High[2])+((x1*x2*(Low[x]-Low[2]));
     
AbsDailyVal=(High[x]-High[2])+(Low[x]-Low[2]);
     
Rei=SubValues[8]/AbsDailyVal[8];
     
REIBuffer[]=Rei;
 
   }
   return(
0);
  }
//+------------------------------------------------------------------+ 
codersguru or other specialists can you
please check it and find the error??

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #29 (permalink)  
Old 02-03-2006, 06:49 AM
MFX's Avatar
MFX MFX is offline
Member
 
Join Date: Oct 2005
Posts: 92
MFX is on a distinguished road
Ind-TD-DeMark-3-1-LA-Mod-03B-AIME

Hi all,

new version from Ind-TD-Demark-3-1


Regards
MFX
Attached Files
File Type: mq4 Ind_TD_DeMark_3_1_LA_Mod_03B_AIME.mq4 (21.6 KB, 1262 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #30 (permalink)  
Old 02-05-2006, 07:05 PM
grunge's Avatar
Junior Member
 
Join Date: Jan 2006
Posts: 18
grunge is on a distinguished road
I got REI from russian forum

Is this the one you guys want?
Attached Images
File Type: gif ぅ瑺嗒.GIF (53.4 KB, 2466 views)
Attached Files
File Type: rar REI.rar (55.1 KB, 1330 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
DeMark, demark indicators, Ind-TD-DeMark-3-1, Ind-TD-DeMark-3-1.mq4, Ind-TD-DeMark-3, demark lines, td demark, Ind-TD-DeMark, demark mq4, 3 demark, td rei, de mark, td rei mq4, Ind-TD-DeMark-3-1_eng, td lines, td demark indicator, demark lines ea, Demark Indicator


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Another Demark Trendline Trader Linuxser Indicators - Metatrader 4 50 11-13-2009 01:55 PM
Demark Auto Trader newdigital Expert Advisors - Metatrader 4 23 09-23-2009 08:21 AM
Demark documentation and code MainPIP Documentation 3 12-29-2007 09:55 PM
Demark arrow please explain toddanderson Indicators - Metatrader 4 0 12-22-2006 03:52 PM
Smoothed Demark 006 Metatrader 4 2 02-18-2006 07:57 AM


All times are GMT. The time now is 05:21 AM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.