- Search Metals Mine
-
iya replied May 26, 2007Yet Another MTF Stoch Indicator — The first one worked for higher timeframes, JoshDance's worked for lower timeframes, so I figured the next logical step would be one that works for all timeframes. To top it off, I included linear ...
Spud's MTF FIB Breakout System
-
iya replied May 25, 2007No, that would be nice, but unfortunately it's impossible. I think you can't even read the candle or chart colors. You gotta use indicator bars to build the candles 'by hand', like in the Heiken Ashi indicator. This limits the number of different ...
MetaEditor - Candle color
-
iya replied May 24, 2007Here's a script that displays GMT, broker time and local time on your chart.
R/S indicator or EA sought
-
iya replied May 20, 2007Indicators and Template — For simonr and everybody interested, here's a collection of indicators, I found useful for chart setup: - H1 candles in a M30 timeframe - H1 stochs in a M30 timeframe - Automatic Fibs I've added inner fibs to the ...
Spud's MTF FIB Breakout System
-
iya replied May 20, 2007Oh, never mind; I just noticed one can delete them manually by simply pressing F3, lol. The same with aicccia's code; it will forget the start date once stopped. I don't think that was intended. You could write it to a file, or to the windows ...
How do I time limit an EA?
-
iya replied May 19, 2007Auto Fibs — Hi Lou, I like how it uses two colors for upper and lower levels, but shouldn't we add the inner levels? And the High/Low calculation didn't work to well for me. I simplified it and tested it on Alpari and IBFX (for sunday ...
Spud's MTF FIB Breakout System
-
iya replied May 19, 2007You could hardcode an expiration date like this: int start() { datetime twoWeeksFromCompilation = D'' + 2*PERIOD_W1*60; if(TimeCurrent() > twoWeeksFromCompilation) { Print("Testing period is over."); return(0); } //...your code... }You could also ...
How do I time limit an EA?
-
iya replied May 18, 2007So it was primarily for backtesting, then. I've added some code providing quite flawless online integration: If you set TIME_SERVER and TIME_LOCAL to unique IDs, the GmtOffset() for these places will get calculated automatically (only works live). ...
Time Conversion Functions - Includes Daylight Savings
-
iya replied May 18, 2007Well done, could come in handy. Here are some suggestions: First, how about adding a timezone for mainland europe.
Also it would be nice to automatically detect the server timezone. Imho, this should actually be a standard function of mql, but ...Time Conversion Functions - Includes Daylight Savings
-
iya replied May 17, 2007Yeah, that makes sense. I made the colors coincide with the normal MACD set to the same period. So, get your two MACDs for the price of one, now!
Of course I know Phils thread and actually made a simple EA early in the beginning. It's profitable ...Custom con/di-vergence ... looking for programmer
-
iya replied May 17, 2007Do you mean you would calculate the red and grey lines at the circles? Because it is before price touched the lines, you couldn't yet setup the orders, can you? I'll try to help with making an EA for yours or Minnellis strategy, maybe they can be ...
EA to enter orders on retracements?
-
iya replied May 16, 2007Updates — First of all I made a standalone DEMA indicator, that all derivative indicators can simply call. The only downside is a little less portability, for these "secondary" indicators. Then modifying the original MACD_Colored was simple: I ...
Custom con/di-vergence ... looking for programmer
-
iya replied May 15, 2007Here's a quick version; without signal lines, we get away with 8 buffers, but for multiple colored bars we need sth else. image
Custom con/di-vergence ... looking for programmer
-
iya replied May 15, 2007First thing is that we can only use 8 Index Buffers max. So we either calculate the DEMAs on the fly or use some other arrays. I'll try to fix it.

Custom con/di-vergence ... looking for programmer
-
iya replied May 14, 2007Sounds interesting. Feel free to contact me, if you need more help. But here's the MACD of two DEMAs, already
image Custom con/di-vergence ... looking for programmer
-
iya replied May 13, 2007Can you post the DEMA? Never heard of it, but I don't think that matters when turning it into an MACD.
Custom con/di-vergence ... looking for programmer
-
iya replied May 12, 2007HAMA — I've added a HAMA option. I'd say this basically turns it into a stochastic colored moving average. Isn't it odd that HAMA candles have almost no lower wicks, but large upper wicks? So I reckon they have no significance. Maybe somebody ...
bringin sexy back - stochastics
-
iya replied May 12, 2007dot product is foolproof — Try using the dot product to get the cosine between vectors or lines instead of the ugly ArcTan(Tan((b2-b1)/(a2-a1))): image image image
Calculating Angles
-
iya replied May 11, 2007sexy candles — I don't know if it makes sense, but here it is: image The sexy four colored stochastic candle indicator! I've added the standard heiken ashi smoothing as an option. Maybe one could also add heiken ashi moving average.
bringin sexy back - stochastics
-
iya replied May 11, 2007Hi Kurka, You're getting the bar count into One_Week_Start_Per, but forget to use it in iHighest(), instead you are using One_Week_Start which is type datetime and will not work as expected. Hope that helps. If you make that into an indicator, do ...
Large regulary scheduled transactions..