Eng Keat Ang
Eng Keat Ang
  • Information
6+ years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Ang Eng Keat Enterprise
Eng Keat Ang
Left feedback to developer for job Build me a MQL4 EA base on Stoch on multi timeframes.
Eng Keat Ang
Left feedback to developer for job Build and EA base on my 3 indicators
Eng Keat Ang
Added topic which website show correct economic calendar news event?
I want to backtest my EA on news event in the past 10 years, but... I don't think we can backtest news filter, because all website news event history are wrong fxstreet.com investing.com forexfactory.com myfxbook.com all this 4 websites news events
Eng Keat Ang
Added topic can indicator force to close trades of an EA during strategy tester?
I want to build a platform / website / software / indicator for people to backtest their EA by news filter (prevent ea open trades on big impact news, close all trades before news start). I understand many people only have EX4 files of the EA
Eng Keat Ang
Added topic MQ4 how to identify multiple groups of trades?
If there are only 2 horizontal lines, I can easily open new trades by the following condition : if (Total_Sell() > Total_Buy() && Ask > upper_blue_horizontal_line) {
Eng Keat Ang
Left feedback to developer for job Add news filter to my existing EA.
Eng Keat Ang
Added topic How to make mt4 default iExposure indicator sorting by pair name
How to make mt4 default iExposure indicator sorting by pair name like below ? Audcad EURchf Gbpusd I trying sort the array but not working : ArraySort(ExtSymbolsSummaries, WHOLE_ARRAY ,0,MODE_ASCEND);
Eng Keat Ang
Added topic Security Concern MT4 hacker
My question : I worry hacker hack into my mt4 account and simply open big lot size trade causing huge loss causing all investors losing money. How to set to block the ip if people try 3 attempt login with wrong password on my mt4 account? My
Eng Keat Ang
Added topic How substract 1 day from TimeDayOfYear() ?
input DateTime Date1; if (TimeDayOfYear(Date1) == TimeDayOfYear( TimeCurrent ())) {          Print ( "It is the same day" ); } if ((TimeDayOfYear(Date1) - 1 day) == TimeDayOfYear( TimeCurrent ())){ {
Eng Keat Ang
Added topic Do something only if order is opened successfully?
int oldSellEntry = 0 ; if ( OrderSend ( _Symbol ,OP_SELLLIMIT , NormalizeDouble ( sellLot , 2 ), ighest1, 3 , SL_TMP, TP_TMP, "1" , 0 , 0 ,Red)) {            oldSellEntry = 555 ; } print
Eng Keat Ang
Added topic mql4 how to get datetime of iHigh?
double highestPrice = iHigh ( Symbol (), 0 , iHighest ( NULL , 0 , MODE_HIGH , 1900 , 2 )); How to get what is the datetime of the iHigh in format YYYY-mm-dd 03:12:01
Eng Keat Ang
Left feedback to developer for job Help me convert my EA from MQ4 to MQ5 (mt4 to mt5)
Eng Keat Ang
Added topic Select last trade of BUYLIMIT trigger.
My EA open 3 trades : BuyLimit 1.1111 BuyLimit 1.0000 SellLimit 1.2345 Then 1 BuyLimit 1.1111 is trigger, so the OrderType is changed from "BUYLIMIT" to "BUY". How to select the last modified trade "BUY" ? I use the following code
Eng Keat Ang
Added topic how to check if current bar is 10 bars away from previous bar?
how to check if current bar is less than 10 bars away from previous bar? Datetime Previous_bar_Time = iTime ( _Symbol , _Period , 0 ); if (Time[ 0 ] < Previous_Bar_Time + Time[ 10 ]) { //do something } I think the formula above is wrong, may I
Eng Keat Ang
Added topic How to store previous account balance into a variable?
if (Total_sell_pos() == 0 && Total_buy_pos() == 0 ) {        double previous_balance = AccountBalance(); //usd1000 } if (AccountEquity() > previous_balance + (previous_balance * 0.05 )){ //usd1000 + 50 =
Eng Keat Ang
Added topic how to calculate profit loss account balance in 100,000 investors mt4 account?
I am a website developer, the client gave me 30 investors mt4 accounts login detail, then I need to display those mt4 account balance , profit, loss onto website. So each member login to the website can see the balance, profit, loss. Do I have to
Eng Keat Ang
Added topic why cannot / decimal point?
lot size = 0.8 / 2 ; //success become 0.4 lot size = 0.6 / 1.5 ; //fail to become 0.4 WHY
Eng Keat Ang
Added topic How to separate two Low[1] by if statement?
Example, previous low is 1.55. When next candle low is 1.66, then next next candle low is 1.44 which is lower than previous low (1.55) then do something. How to achieve it?      double previous_low = 0 ;     
Eng Keat Ang
Added topic How to prevent EA open new trade when previous trade hit sl?
How to prevent EA open new trade when previous trade hit sl? My ea code :      double D110RecentBarHighest;      double D110RecentBarLowest;     D110RecentBarHighest = iHigh ( Symbol (), 0
Eng Keat Ang
Added topic How to separate old Close[1] and new Close[1]?
Task : "If found a bullish candle, then wait until next candle close above the highest price among recent 50 candles". I acheive the above task by writting the following code : if (Open[ 1 ] < Close[ 1 ]) {      double