- Search Metals Mine
- zznbrm replied Jan 18, 2012
Yes quite a few. Here are some spread spikes from a few minutes ago (MST): Date/Time Ask Bid 10:29:48.864 1.28520 1.28445 10:29:48.870 1.28520 1.28445 10:30:09.423 1.28539 1.28480 10:30:09.431 1.28539 1.28480 10:30:09.651 1.28539 1.28480 ...
MB Trading Futures - Introduction
- zznbrm replied Jan 18, 2012
Here's my best guess at this time. MBT changed something with the quote feeds. I've been watching the tick chart this morning (using Quote API). There are no more negative spreads. Usually negative spreads happen all the time. But this morning, they ...
MB Trading Futures - Introduction
- zznbrm replied Jan 15, 2012
Yes, that is the average difference in the quote timestamps between the Quote API and MT4 during my testing over the last two weeks. Now, there can be multiple explanations for this difference. Regardless of the reasons, that's what I have found. I ...
MB Trading Futures - Introduction
- zznbrm replied Jan 15, 2012
Convert to MBT API/SDK...you will be very happy you did. I use a C# app for quotes, trading, and strategy decision-making. Although, I do continue to use MT4 for charting only - feeding the prices from the Quote API (real quotes) into MT4 for the ...
MB Trading Futures - Introduction
- zznbrm replied Jan 14, 2012
Here you go. This is what I created for my broker (New York time zone, forex trading day starts at 17:00). If your broker is in a different time zone and/or you want to use a different trading day starting time, then you should update the date/time ...
Modifying an ADR indicator
- zznbrm replied Jan 12, 2012
I have yet to see a system that cannot be tested in MT4 using tick data - including multiple symbol (basket) systems like this one. You just need to think outside-the-box a little bit. In fact, I will go as far as to say you can backtest any system ...
Three pairs hedging/Renko
- zznbrm replied Jan 11, 2012
Does this look similar to what you want? This one shows the ADR for each day (my broker is currently GMT-5, new trading day starts at 17:00). The ADR high/low lines "move" as new highs/lows are made throughout the day. This allows you to clearly see ...
Modifying an ADR indicator
- zznbrm replied Dec 30, 2011
My understanding... They already have a solution for it. I do not think SLs work like that. Remember, each MT4 account is associated with an underlying Desktop Pro account. All trading is done via the Desktop Pro account. When you open, modify, ...
MB Trading Futures - Introduction
- zznbrm replied Dec 30, 2011
I think that is a reasonable explanation. It is clear MT4 cannot handle negative spreads. I do not have any knowledge of the inner workings of the MT4 server or client. But my best guess is that when the MT4 client gets a negative spread quote from ...
MB Trading Futures - Introduction
- zznbrm replied Dec 19, 2011
This might do what you want. There are more efficient ways, but I'll leave that up to you.
Make MACD Bars indi non-repainting for higher TFs
- zznbrm replied Dec 11, 2011
See attached script for RSI. I'll leave the other indicators and the details up to you to work out. This should give you a good start.
Request: universal script to print indicator data to Notepad
- zznbrm replied Dec 7, 2011
double CSI = (dadxr * atr * Ka * Kb * 100); then use DoubleToStr( CSI, 0 ); Also, Kb is wrong, should be: double kb = ( 1.0 / (150.0 + C) );
Indicator Request - Commodity Selection Index - (CSI)
- zznbrm replied Dec 6, 2011
Try the attached indicator. It does NOT repaint past bars. If you want one that repaints past bars (ie, you prefer the stairstep look of your MTF MA), then you will need to change the code accordingly.
is a MTF MA crossover possible
- zznbrm replied Dec 5, 2011
Man...this is one crazy thread you guys have (had) going on here. In fact, it is so typical of the roller coaster rides many of these Trading System threads go on...it should be made into a sticky for future generations to study. Good luck...I hope ...
Fratelli Intraday trading system
- zznbrm replied Dec 5, 2011
A universal script can be created for this. But most of the effort would be in "universalizing" the script, trying to make it generic enough to work with all types of indicators. IMO it makes more sense to create separate scripts for each indicator ...
Request: universal script to print indicator data to Notepad
- zznbrm replied Dec 3, 2011
I got the impression Xaphod was trying to help. He probably saw the same thing everyone else saw - the floundering going on with repainting, backtest, accuracy, and response-time issues with the indicators. Oh well...I'm sure Fratelli's lawyers will ...
Fratelli trading system signal indicator
- zznbrm replied Dec 3, 2011
Well...I don't know if it is a joke or not...and don't really care...but I will say that Xaphod is very good with MQL4 and you would be wise to examine some of the indicators he has made. He is clearly a professional and knows how to code indicators ...
Fratelli trading system signal indicator
- zznbrm replied Dec 2, 2011
Put "Data.txt" in your "experts/files" folder. Run attached script.
Using attached data file in a script
- zznbrm replied Nov 30, 2011
Another alternative is to automate the entire process. I had done something similar for a friend: The attached script will download the GOOG data file from the Yahoo website and create the "GOOG,D1" history file. Just execute the script when you ...
Looking for a way to import excel data into mt4
- zznbrm replied Nov 29, 2011
Script can go on any chart. This solution has nothing to do with profiles. The previously attached mq4 file is a script and should go in your "experts/scripts" folder. You too!
Is there a script to rotate MT4 Profiles every X minutes?