Codes

Multi Time Frame Trader for MetaTrader 4

EA is setup to use higher time frames for trend identification and lower time frames for entries/exits

HTH Trader for MetaTrader 4

Hedge The Hedge Trader EA

Fundamental Trader DailyFX CSV MQL4 for MetaTrader 4

This Expert Advisor trades every news event that is scheduled to release on www.dailyfx.com/calendar for the current week. The EA waits for the next news event to be released, compares the released economic data, determines which currency to trade and exe

Signal Direction Probability for MetaTrader 4

Graphs correlation between percent change of the price signal, and the price signal, to determine high probability of current price signal direction

Forum

High Economic Events

Why do different websites i.e. ForexFactory, DailyFX & FxStreet don't always agree on High Economic Events? There are some events that are Medium on DailyFX and are High on ForexFactory. Example: "06/28/2016 12:30 GMT USD Gross Domestic Product " event is High on ForexFactory and Medium on DailyFX

TimeGMT() is Wrong in Strategy Tester - FXCM demo server

Can anyone explain why TimeGMT() method call in Strategy Tester is 3 hours behind? The only reason why I noticed this bug was because of Visual Mode in Strategy Tester. I noticed that the time of entry was wrong in Visual Mode, and when l started looking further into it I noticed that there was a 3

import c# dll

has anyone successfully imported a dll written in c# : visual studio 2005, visual studio 2008. visual studio 2010? I can't seem to use the functions of the DLL written in c# VS2010? Any suggestions?????? I searched the forum, and haven't found a solution. Thanks

icustom ZigZag

I'm trying to determine direction of zigzag indicator with the icustom command. This is what i have so far: ZigZag High=iCustom(NULL,0,"ZigZag",MODE_HIGH,0); ZigZagLow=iCustom(NULL,0,"ZigZag",MODE_LOW,0); The lines are drawn on the chart, but both ZigZagHigh and ZigZagLow are equal to zero when I

Can this be used in Forex???

Hey guys, I just found this site, let me know what you guys think, it's pretty interesting for fundamental analysis. I have never seen this before :) XXXXXXXXXXXX

How to Make ATR Indicator Profitable

Hello MQL4 Community, I'm wondering, If you only had to use a single indicator like ATR, what rules would you setup for entries , assuming the ATR satisfied your volatility level. I know that the ATR indicator is indirectional, i'm wondering what others would do for entries. Thanks, c0d3

Suggestions for EA (Loosing to Profit)

does anyone have any suggestions for this EA

ARRAY DATA INTO ARRAY

i'm trying to take two instruments and store them into array1 and array2, divide them (array1/array2) and store them into another array11. Indicator code: Pair1="EURUSD"; Pair2="GBPUSD"; double first; double array1[][6]; double array2[][6]; double array11[]; shift=1; if(x!=iTime(NULL, 0, 0))

Only Trade During Market Hours(Asia, UK, UK/US)

Hi guys, i'm trying to make my EA only work during open market hours: Asia, UK, UK/US. My broker is IBFX: +0 GMT // this should work?? if (tradingHours()) { //trade } bool tradingHours() { // Asia GMT: 0:00 - 9:00 // UK GMT: 8:00 - 16:00 // US GMT: 13:00 - 22:00 if (Hour()>= 0 && Hour()<=

TimeFrame of the Chart

Hi guys, is there a method to get the current timeframe of the chart? I need to use this for allowing the EA to only run on 1H, or 4H time frames and alert if any other time frame is activated to turn off the EA. Thanks