Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
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
  #1 (permalink)  
Old 04-04-2006, 07:51 AM
jerrymar's Avatar
Member
 
Join Date: Dec 2005
Posts: 29
jerrymar is on a distinguished road
Hvr

Good Day Friends! Id like to know if anyone has historic volatility ratio indicator for MT4.

thanks a lot.
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 04-04-2006, 11:38 AM
Administrator
 
Join Date: Sep 2005
Posts: 20,059
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 jerrymar
Good Day Friends! Id like to know if anyone has historic volatility ratio indicator for MT4.

thanks a lot.
We ahve some good thread related to this subject.

Some indicators you may find here and here.

And we have this thread with indicators (for MT3) and this one (MT3 as well).

And we have this e-book.
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 04-07-2006, 07:37 AM
jerrymar's Avatar
Member
 
Join Date: Dec 2005
Posts: 29
jerrymar is on a distinguished road
thanks newdigital
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 04-10-2006, 01:50 AM
Junior Member
 
Join Date: Feb 2006
Posts: 4
eshelle is on a distinguished road
Does anyone know a link where I can find the 6/100 Historical Volatility indicator for metatrader4 ? The 6/100 Historical Volatility indicator is mentioned in 'Steet Smarts' by Linda Bradford Raschke and Connors

Thanks in Advance

Last edited by eshelle; 04-10-2006 at 11:58 PM.
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 04-10-2006, 05:10 AM
Foreverold's Avatar
Senior Member
 
Join Date: Oct 2005
Posts: 274
Foreverold is on a distinguished road
This is the closest I have for mt4
Attached Files
File Type: mq4 HRV-fx sniper.mq4 (2.0 KB, 488 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
  #6 (permalink)  
Old 04-10-2006, 09:55 PM
Junior Member
 
Join Date: Feb 2006
Posts: 4
eshelle is on a distinguished road
I have found the 6/100 Historical Volatility indicator as spoken about in 'Street Smarts" but it has many errors when I try to compile it in metatrader 4.

Here it is


/*[[
Name := HVR
Author := podval
Link := podval_2002@rambler.ru
Notes := Historical Volatility Ratio 6/100
Notes := (L. Rashke)
Separate Window := Yes
First Color := Blue
First Draw Type := Line
First Symbol := 217
Use Second Data := No
Second Color := Red
Second Draw Type := Line
Second Symbol := 218
]]*/
Variable :
shift(0),
hv6(0),
hv100(0),
len(150),
prevBars(0),
mean6(0),
i(0),
mean100(0);

Arrays:
x6[6](0),
x100[100](0);

If prevBars = Bars Then Exit;
prevBars = Bars;

SetLoopCount(0);

For shift = 0 To Bars-1-len Begin

for i = 0 to 5
{
x6[i] = log(Close[shift+i]/Close[shift+i+1]);
};

for i = 0 to 99
{
x100[i] = log(Close[shift+i]/Close[shift+i+1]);
};

mean6 = 0;
for i = 0 to 5
{
mean6 = mean6 + x6[i];
};
mean6 = mean6/6;

mean100 = 0;
for i = 0 to 99
{
mean100 = mean100 + x100[i];
};
mean100 = mean100/100;

hv6 = 0;
for i = 0 to 5
{
hv6 = hv6 + (x6[i] - mean6)*(x6[i] - mean6);
};
hv6 = sqrt(hv6/5)*7.211102550927978586238442534941;

hv100 = 0;
for i = 0 to 99
{
hv100 = hv100 + (x100[i] - mean100)*(x100[i] - mean100);
};
hv100 = sqrt(hv100/99)*7.211102550927978586238442534941;


SetIndexValue(shift, hv6/hv100);

End;



I was wondering whether someone could fix the errors so that it can be used in metatrader4 and post the indicator so that we all can use it.

Thanks in advance

Last edited by eshelle; 04-10-2006 at 11:57 PM.
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 04-11-2006, 01:43 PM
Senior Member
 
Join Date: Oct 2005
Posts: 107
treberk is an unknown quantity at this point
The "errors" you described were because the code you posted was was MT3 not MT4. I have posted my mt4 conversion, but this indicator seems to use alot of resources. Maybe someone can have a look at it?
Attached Files
File Type: mql HVR.mql (1.3 KB, 145 views)
File Type: mq4 HVR.mq4 (2.5 KB, 449 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
  #8 (permalink)  
Old 04-12-2006, 06:49 AM
Junior Member
 
Join Date: Feb 2006
Posts: 4
eshelle is on a distinguished road
Thanks treberk
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 04-12-2006, 12:47 PM
jerrymar's Avatar
Member
 
Join Date: Dec 2005
Posts: 29
jerrymar is on a distinguished road
Thanks too, treberk
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 10-20-2007, 09:43 AM
The_One's Avatar
Junior Member
 
Join Date: May 2007
Posts: 2
The_One is on a distinguished road
Historical Volatility indicator!!!

Hello,
Has anyone come across "Historical Volatility" indicator. I've seen this indicator on MetaStock however never seen discussed for MT4. Can someone please let me know where I can find it.


Thanks
The_One
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
VolumeRSI, sniper mq4, Sniper.mq4


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


All times are GMT. The time now is 09:22 PM.



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