- Search Energy EXCH
-
RaptorUK replied Jan 10, 2013No, it's not possible . . unless you want an offline chart.
MT4 indicator to shift your broker candles
-
RaptorUK replied Jan 10, 2013They are held by the Broker and executed with no need for any other communication with your Broker . . . so if you lose Internet connection or your PC reboots or MT4 crashes the TP & SL are still in place.
Basic Question on Stops and Limits in EAs
-
RaptorUK replied Jan 9, 2013Yes it is very simple, you should read the mql4 Book if( Open[0] > Close[1]) Print( "Good" ); else if( Open[0] < Close[1]) Print("Bad"); comparing double values can be a bit of a minefield though, it is possible for a test of price == price to ...
previous bar OHLC
-
RaptorUK replied Jan 9, 2013You need to be more specific about what you want to do with a Magic Number, for example, only modify order that have the same Magic Number as set in the parameters ? or the opposite, only modify Orders that have a different Magic Number to that set ...
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 8, 2013Or . . . int MidnightBar, Index = 0; bool YesterdayWasAHoliday = false; MidnightBar = iBarshift(NULL, PERIOD_H1, Midnight( TimeCurrent() ) ); Index = MidnightBar + 1; while(Index <= MidnightBar + 24) { if(Midnight(iTime(NULL, PERIOD_H1, Index) ) != ...
How to tell if broker was closed the day before?
-
RaptorUK replied Jan 8, 2013Can't you count the number of H1 bars for the previous days date ?
How to tell if broker was closed the day before?
-
RaptorUK replied Jan 8, 2013If the MAs cross between bars then you can't place an arrow in that exact position . . . you can only places the arrow so it lines up with a bar . . .
Arrow on MA cross?
-
RaptorUK replied Jan 7, 2013Try this . . . I added an additional extern to enable/disable email extern bool SendEmail = true; Don't forget, you will need to setup email in MT4 in Tools>Options>Email make sure that the test email arrives . . .
I will code your EAs and Indicators for no charge
-
RaptorUK replied Jan 6, 2013How is the RSI on your chart setup ? I can see it is 14 periods but what applied price are you using ?
MT4 RSI indicator calculation question
-
RaptorUK replied Jan 5, 2013What exactly doesn't work ? the download fails ? the indicator doesn't show up in MT4 ? you need to be specific about what is not working . . . .
HELP! Downloading ea's and indicators on MT4
-
RaptorUK replied Jan 5, 2013Build your own physical server rather than using a Virtual server . . . you should be able to run many, many terminals on a decently specified server grade machine. Once you have it built use a co-location service to host it.
Looking for the fastest/most accurate FX feed
-
RaptorUK replied Jan 5, 2013Right click on the link, not left, and then click Save target as
HELP! Downloading ea's and indicators on MT4
-
RaptorUK replied Jan 5, 2013Not exactly sure what you mean . . . but the chart is a tick chart and the time scale is not applicable to it, the ticks shown aren't even one complete M1 bar
Pip Count Indicator?
-
RaptorUK replied Jan 5, 2013Metaquotes are a commercial organisation, if a Mac version would be profitable for them they would do it . . . but it won't so they don't.
MAC Computers for trading
-
RaptorUK replied Jan 4, 2013I wouldn't if I were you, from what I have read their data is not so good . . . there are better sources, Dukascopy, Pepperstone . . . more info here: url
Algorithm to convert flawed 1min data > 5min data?
-
RaptorUK replied Jan 4, 2013Tick gapping ? there cannot be a gap between ticks, or do you mean something else ? The OP was saying that "Oftentimes big intraday moves begin with a big initial impulse, say 10 pips in 5 minutes." I was simply pointing out that this can happen ...
Pip Count Indicator?
-
RaptorUK replied Jan 4, 2013Download some decent tick data and use CSV2FXT to convert it into all timeframes from M1 to MN1
Algorithm to convert flawed 1min data > 5min data?
-
RaptorUK replied Jan 4, 2013That just shows the time between ticks not any prices.
Pip Count Indicator?
-
RaptorUK replied Jan 4, 2013Nope, comparing the 2 bars might find nothing significant if the move is made partly in one bar and finishes in the next . . . it would average itself out during the 2 M1 bars . . . if you look at ticks you will see the significant moves as big ...
Pip Count Indicator?