Forex



Go Back   Forex Trading > Downloads > Expert Advisors - 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
  #341 (permalink)  
Old 11-07-2008, 07:00 PM
Member
 
Join Date: Dec 2006
Posts: 39
funyoo is on a distinguished road
Quote:
Originally Posted by marlow2007 View Post
Hello,
Can someone post an VQ EA that works or tell me what setting I need to set this EA to. It will not work in the tester. Thanks

Marlow
Hello,

Here is another expert advisor based on this indicator :

Volatility Quality Expert Advisor - Trading System Forex

I hope that it will work for 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
  #342 (permalink)  
Old 01-14-2009, 01:14 PM
Junior Member
 
Join Date: Aug 2006
Posts: 5
spartan is on a distinguished road
Need a help fixing the indicator!

Hello,

I need a help from a kind coder who would be willing to fix a problem with the VQ.mq4 or direct me to the right direction.

When I set TimeFrame to 60 (and other MTF settings), CountBars seems to change to a lower number in certain cases.

When I set CountBars to 1485, it is fine but when set to higher numbers; the VQ indicator shows the data for shorter periods than it should.

For example, on M5 chart:

when CountBars=1485, it shows about 5 days worth of data which is fine

but when CountBars=14850, it shows about 10 days worth of data (about 3000 bars) which is not fine.

And even when CountBars=148500, it shows about only 10 day worth of data.

I get this problem only when I set TimeFrame to other than 0. Thus I concluded that this part of code is causing the problem:

Code:
if (TimeFrame>Period())
   {
     datetime TimeArray1[]; 
     ArrayCopySeries(TimeArray1,MODE_TIME,Symbol(),TimeFrame); 
     int limit=CountBars+TimeFrame/Period();
     for(i=0, int y=0;i<limit;i++) {if (Time[i]<TimeArray1[y]) y++;  SumVQ[i]=SumVQ_MTF[y];}
   }
Does this code change the set value of CountBars to a lower number somehow?

I just started learning MQL4 like yesterday so it's way too difficult for me.
I hope someone could take a good look at the code and fix it.

Best Regards,

spartan

P.S.

When I set TimeFrame setting to 240 (H4), I get like 3 more days worth of data on M5 chart compared to when TF=60 (13~14 days total, up to 4000 M5 bars).
On H1 chart, I get about 8~9 months worth of data (again about 4000 bars of H1 data). Hmmm...why is that?
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
  #343 (permalink)  
Old 01-15-2009, 08:21 AM
Member
 
Join Date: Oct 2006
Posts: 80
Big Be is on a distinguished road
Spartan,
Check these first:
Either that's all the bars on your chart,
or you may need to increase the Max bars settings: Tools \ Options \ Chart tab.

Read my posts in this thread if you are serious about trying this indicator. It has real potentials.

Big Be
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
  #344 (permalink)  
Old 01-15-2009, 09:58 AM
Junior Member
 
Join Date: Aug 2006
Posts: 5
spartan is on a distinguished road
Quote:
Originally Posted by Big Be View Post
Spartan,
Check these first:
Either that's all the bars on your chart,
or you may need to increase the Max bars settings: Tools \ Options \ Chart tab.

Read my posts in this thread if you are serious about trying this indicator. It has real potentials.

Big Be
Big Be,

Thanks for your reply. I recognize you as the one who coded one of the VQ EAs and I'm glad you are still around!

Neither is the case for me about the number of bars I get (I actually changed the settings, restarted MT4 but it's still the same).
When I don't set the VQ indicator to MTF, I get a lot more bars...I get substantially less bars only when I have it set to MTF.

Can you do me a favor and set your VQ indicator's TimeFrame setting to 60, and on a 5min chart see approximately how many days of data you get in the VQ indicator?

I use Vista, and on Alpari data...but I don't think neither is causing the problem, though I'm not totally confident about the Vista part though haha.

I read all the posts in this thread including yours. I'm really interested in this indicator. I wish I was active back when this thread was active though.

I was looking for optimal settings for VQ for my trading and got this problem.

spartan

P.S. I forgot to mention but I really appreciate everyone who contributed to this indicator and thread.
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
  #345 (permalink)  
Old 01-27-2009, 06:02 AM
progressapama's Avatar
Member
 
Join Date: Apr 2008
Posts: 67
progressapama is on a distinguished road
Does this VQ indicator REPAINT ? Anyone ? and what setting are good for

M15 -->

M30 -->

H1 -->

H4 -->

Please help
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
  #346 (permalink)  
Old 01-27-2009, 01:35 PM
Junior Member
 
Join Date: Aug 2006
Posts: 5
spartan is on a distinguished road
I'm still testing the VQ indicator but it seems that:

when realtime=true and TimeFrame=0, it can repaint until current candle closes, and

when realtime=true and TimeFrame=non-zero, then it can repaint until the candle of the TimeFrame closes.

When realtime=false, my guess is that it would not repaint but I had an impression that it does not refresh properly having to refresh manually by opening and closing property window.

On a side note, it seems the indicator has a bug. Here's what I see:

When 2 signals in a row get canceled by adverse price moves, it fails to put SignalPrice text (the "arrow" with price level) , and it also fails to alert the signal.
Have anyone experienced something like that?

Edit: The above case is for when RealTime=true.

Last edited by spartan; 02-04-2009 at 09:55 PM. Reason: clarification
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
  #347 (permalink)  
Old 02-22-2009, 08:18 PM
Junior Member
 
Join Date: Sep 2008
Posts: 10
damjano is on a distinguished road
Volatility Quality indicator

Can someone post the VQ indicator that is spelled out in the window as "Volitility Quality" instead of "VQ"?I attach image below that will show what I am talking about
Thank you
Attached Images
File Type: gif 1.gif (20.4 KB, 929 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
  #348 (permalink)  
Old 02-22-2009, 09:03 PM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,407
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by damjano View Post
Can someone post the VQ indicator that is spelled out in the window as "Volitility Quality" instead of "VQ"?I attach image below that will show what I am talking about
Thank you
Moved to VQ thread.
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
  #349 (permalink)  
Old 03-21-2009, 07:46 PM
Senior Member
 
Join Date: Oct 2007
Posts: 115
mudar is on a distinguished road
Quote:
Originally Posted by funyoo View Post
Hello,

Here is another expert advisor based on this indicator :

Volatility Quality Expert Advisor - Trading System Forex

I hope that it will work for you.
VQ repaint, not reliable for building an EA, as well for his alert.
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
  #350 (permalink)  
Old 04-08-2009, 11:48 PM
Junior Member
 
Join Date: Apr 2006
Posts: 9
Inbox is on a distinguished road
Quote:
Originally Posted by damjano View Post
Can someone post the VQ indicator that is spelled out in the window as "Volitility Quality" instead of "VQ"?I attach image below that will show what I am talking about
Thank you
I'm looking for that version too... i think is the first version of VQ

Signals are very diferent... Anyone have it?

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
Reply

Bookmarks

Tags
asctrendline, dashboard, forex, http://www.forex-tsd.com/indicators-metatrader-4/2982-volatility-quality-index.html#post39890, RAFF1410, spudfyre, volatility, volatility index, volatility index mq4, volatility indicator, volatility quality, Volatility Quality EA, Volatility Quality Expert advisor, Volatility Quality Index, volatility quality indicator, Volatility Quality mq4, VQ ea, VQ indicator, VQ mt4, VQ.ex4, vq.mq4, VQforEA, vqi mq4, vq indicator, DASHBOARD

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
Back-testing, modelling quality M1 Baiwan Questions 0 11-30-2006 09:07 AM
Sample quality EasyFx Expert Advisors - Metatrader 4 2 03-10-2006 04:12 PM
The Volatility Index newdigital Documentation 0 10-04-2005 01:07 PM


All times are GMT. The time now is 04:30 PM.



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