- Search Metals Mine
- zznbrm replied Nov 3, 2011
Toggles true mode on/off. When set to false...VQzz2 will behave exactly the same way as VQzz. When set to true, VQzz2 will not repaint previous chart bars to "match" the data from the upper time frame. As I mentioned...using VQ, VQ7, VQzz, or VQzz2 ...
Indicators development for T101's not very simple method
- zznbrm replied Nov 3, 2011
Yes, this has been discussed many times. The Highs/Lows are always "exaggerated". I've pointed this out a few times, but it does not seem to bother the people who use it. Go figure! Edit: Alternative methods have been discussed. Using tick data to ...
Indicators development for T101's not very simple method
- zznbrm replied Nov 3, 2011
MT4 is more than adequate for most data filtering frameworks. Check your code - I'd guess you are using inefficient methods for data calculation/analysis. FF is filled with examples of inefficient code. Especially for live-trading EAs, you ...
quad core multiple CPU's, multiple MT4 sessions, Virtual Machine
- zznbrm replied Nov 1, 2011
Continuing to test Don's EAs: EachTickMode = false UseVQzzmtf = true UseHASmtf = false TTF = 30 STF = 5 Scalp = false RiskPercent = 1.0 Needed to make an adjustment for Lot Size logic...but other than that it is running fine. Although the exit ...
Indicators development for T101's not very simple method
- zznbrm replied Oct 29, 2011
There are already (at least) 3 EAs that trade using the VQ indicators (disbellj, jmw1970, and Kosomolate). Why would I post a 4th EA when any of those 3 will suffice?
Indicators development for T101's not very simple method
- zznbrm replied Oct 27, 2011
You need to "notify" the offline chart of an incoming tick. In your offline chart generator, do something like this after you update the bar data each time: //+------------------------------------------------------------------+ //| ...
Can you attach an EA on an offline chart?
- zznbrm replied Oct 26, 2011
To answer your question...I do not know of a way to directly access the price value of a horizontal line on another chart. There are workaround solutions - like using global (MT4) variables. However...The best (and easiest) solution would be to ...
Renko Block Charts
- zznbrm replied Oct 21, 2011
I'll try to help out with some testing of your EAs next week. Keep up the good work!
Indicators development for T101's not very simple method
- zznbrm replied Oct 21, 2011
Some random comments: The idea, that a strategy traded against an aggregate of pairs (like the 8/14 pair basket) can outperform a single pair, is problematic for several reasons: - There's no Support/Resistance on the basket chart. It might look ...
T101 Basket Trader with ONE of Nanningbob's Balls
- zznbrm replied Oct 20, 2011
Happily it repaints. That's how it was designed to function. It repaints the current upper timeframe bar because that's what it was designed to do. It was created to visually represent the direction of the upper timeframe per the VQ calculation used ...
T101 Basket Trader with ONE of Nanningbob's Balls
- zznbrm replied Oct 18, 2011
Darryl, Yes, it is confusing. It is very clear from the lawgirl21's charts that 3/8 Smooth MAs are being used. I'm not sure why they are advertised as EMAs???? And no...these obvious differences in MAs can NOT be attributed to broker data feeds. ...
Yet another moving average crossover system
- zznbrm replied Oct 18, 2011
3/8 SMMA match lawgirl21's charts.
Yet another moving average crossover system
- zznbrm replied Oct 17, 2011
Here is a simple signal EA for the VQ indicator. It shows when the VQ changes on the upper timeframe. Nothing really fascinating about this...but it does things a little different than the current EA that you might find useful: - Calculates VQ ...
Indicators development for T101's not very simple method
- zznbrm replied Oct 14, 2011
Yes, the current bar will repaint because the value is constantly changing. If you put the indicator on a M15 chart and set the timeframe to M15, then the last bar value will change until it is closed. Now put the indicator on a M15 chart and set ...
Indicators development for T101's not very simple method
- zznbrm replied Oct 13, 2011
That VQ indicator is very inefficient - processing up to 10000 records for every tick. Combined with multiple iCustom calls in the EA...it is certainly a resource hog. I attached a more efficient VQ indicator below as well. I stripped out lots of ...
Indicators development for T101's not very simple method
- zznbrm replied Oct 13, 2011
VQ7 Efficiency — For those interested...a more efficient VQ7 method and example usage.
Indicators development for T101's not very simple method
- zznbrm replied Oct 11, 2011
By "list of pairs", I'm guessing you mean that "pairNames" is a string array of pair names. If that is the case, then you may want to look at your usage of "pairNames" (missing index).
MT4 multicurrency EA data problem
- zznbrm replied Oct 10, 2011
kosomolate, Yeah, that's it. You got me! You figured out my plan - to trick you into creating an EA for your strategy so I can use it for my own trading. Well, that insults my intelligence and my programming skills. But that is ok, you are just some ...
Indicators development for T101's not very simple method
- zznbrm replied Oct 9, 2011
Why don't those of you testing kosomolate's strategy use the Trade Explorer feature to share your results? Or at the very least, share your cumulative results - you must have several months of results by now. I'm not necessarily talking about live ...
Indicators development for T101's not very simple method