Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4






Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 06-24-2008, 01:50 AM
Senior Member
 
Join Date: Aug 2006
Posts: 456
RickW00716 is on a distinguished road
Indicator for extremes near open

I am looking for an indicator that will plot the (open - low)if the low is closest to the open....and the (high-open) if the high is closest to the open.

I would also like to be able to plot a 10 period average of each of these..example: a 10 SMA of open -low...only open minus the low when the open is closest to the low...vice versa for the high - open.

Also is there a way I can plot the weekly open on smaller timeframe charts?

Thank you!
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
  #2 (permalink)  
Old 06-24-2008, 02:16 AM
Elliott Wave's Avatar
Junior Member
 
Join Date: Jun 2008
Posts: 3
Elliott Wave is on a distinguished road
While not exactly what you are looking for, there is an indicator called the 'Directional Day Filter' which is quite useful for determining the trend for the day based on the first hour.

I could provide two different versions coded in C# (NinjaScript) and here is the EasyLanguage code if it helps:


Quote:
Inputs: PlotTime(5),Delay(60) ;

Vars: NuHi(c), NuLo(c), Med(0);

If d<>d[1] then begin
NuHi = H;
NuLo = L;
end;

If H>NuHi then NuHi = H;
If L<NuLo then NuLo = L;

If T = CalcTime(Sess1StartTime,PlotTime) then Med = (NuHi+NuLo)/2;

If Med > 0 then plot1(Med,"DDFLine");

If t = CalcTime(Sess1StartTime,Delay) and nulo>0 then begin
Plot2(NuHi,"hi");
Plot3(NuLo,"lo");
Plot4(C,"C");
If checkalert then alert = true;
end;
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
  #3 (permalink)  
Old 06-24-2008, 02:34 AM
Senior Member
 
Join Date: Aug 2006
Posts: 456
RickW00716 is on a distinguished road
Quote:
Originally Posted by Elliott Wave View Post
While not exactly what you are looking for, there is an indicator called the 'Directional Day Filter' which is quite useful for determining the trend for the day based on the first hour.

I could provide two different versions coded in C# (NinjaScript) and here is the EasyLanguage code if it helps:
Thank you...this looks interesting...Is this indicator available for MT4?
I am not a programmer(very computer illiterate!)
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
  #4 (permalink)  
Old 06-24-2008, 03:25 AM
Senior Member
 
Join Date: Oct 2005
Posts: 450
Perky is on a distinguished road
i use this to guage my uk open trades for direction
it colors the high/low of the asian session
pretty good really
Attached Images
File Type: gif arb.gif (51.6 KB, 841 views)
Attached Files
File Type: mq4 $TrillionDollarDaysHML.mq4 (22.7 KB, 295 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
  #5 (permalink)  
Old 06-24-2008, 03:26 AM
Senior Member
 
Join Date: Oct 2005
Posts: 450
Perky is on a distinguished road
loooking for a way of getting the US open
im thinking
its either a continuance of the uk session or reversal
just a fresh idea
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
  #6 (permalink)  
Old 06-24-2008, 04:45 AM
Senior Member
 
Join Date: May 2007
Posts: 293
ServerUang is on a distinguished road
Quote:
Originally Posted by Perky
i use this to guage my uk open trades for direction
it colors the high/low of the asian session
pretty good really
Thank you for sharing your $TrillionDollarDaysHML indicator Sir,
May I ask question ?
The using of this indi, is it the same with Session indicator Sir ?

BestRegards,
ServerUang
Attached Images
File Type: gif session.gif (36.1 KB, 817 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
  #7 (permalink)  
Old 06-24-2008, 12:04 PM
Senior Member
 
Join Date: Oct 2005
Posts: 450
Perky is on a distinguished road
no the session indi just tells you when the sessions begin and start - from what I understand

this indicator shows the high and low from the asian session
and you can judge your trades from there
for thr uk session
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
  #8 (permalink)  
Old 06-24-2008, 02:57 PM
Senior Member
 
Join Date: May 2007
Posts: 293
ServerUang is on a distinguished road
Thank you Sir for the answer, I will try and learn more about your indi.

ServerUang
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
  #9 (permalink)  
Old 06-24-2008, 02:58 PM
KaMpeR's Avatar
Senior Member
 
Join Date: Mar 2006
Location: South Africa
Posts: 495
KaMpeR is on a distinguished road
Hi Perky

Could you post the template file and the relevant indicators for the initial picture posted?

Thanks
Wayne
__________________
FatCat
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
  #10 (permalink)  
Old 06-24-2008, 05:44 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,215
matrixebiz is on a distinguished road
Quote:
Originally Posted by Perky View Post
i use this to guage my uk open trades for direction
it colors the high/low of the asian session
pretty good really
Hello, what is this indicator your using;

Can you post it please
Thanks
Attached Images
File Type: jpg PR.JPG (15.3 KB, 684 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
session indicator, $TRILLIONDOLLARDAYSHML

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
Daily open indicator donb01 Metatrader 4 6 07-25-2008 06:09 AM
London open line indicator needed toddanderson Indicators - Metatrader 4 2 06-09-2007 05:39 PM
Indicator % of GTM 0000 open needed toddanderson Indicators - Metatrader 4 0 04-24-2007 11:44 AM
0 indicator (zero) to open blank basement window fxbs Indicators - Metatrader 4 4 03-14-2007 02:07 AM
Daily Open Indicator phildunn Metatrader 4 4 03-20-2006 01:05 AM


All times are GMT. The time now is 11:55 AM.



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