• Information
8+ years
experience
0
products
0
demo versions
1
jobs
0
signals
0
subscribers
Sherif Hasan
Added topic Is this possible to backtest the EA used multi timeframe?
Hello, I wrote EA using 2 different timeframe.eg. 15m and 4hr. but when i backtest nothing doing. Forward test works fine where i opened 2 timeframes on chart. Question is: Is this possible to code to test backtest also? if yes how it will be done? I
Sherif Hasan
Added topic Whats wrong with this code?
Whats wrong with this code? I get previous day high/low/close and start calculation. To get previous day high/low/close i got simple code here. just added some code for previous day low,close and calculations. when i compile which shows error message
Sherif Hasan
Added topic Can you fix this code!
Hi, I used following code/idea to apply 1 trade/day. last 20days it was worked. but since today not working. may be my logic will be wrong. I assign the int value 0 to nday and process orders if nday!=Day() once prcess done i change the value for
Sherif Hasan
Added topic Complete metric for Heiken Ashi color change?
Can anyone help me what is the complete metric for Heiken Ashi color change? I feel i am wrong with following rules: If the haClose is above haOpen, then a bullish sign occurs (white candle). If haClose is below haOpen, then a bearish sign appears
Sherif Hasan
Added topic Question about MarketInfo()?
Shall i use NULL instead of Currency name? I tried as NULL instead of EURUSD,but results are "0"? int     digits=MarketInfo( "EURUSD" ,MODE_DIGITS);
Sherif Hasan
Added topic Help with this code!
everyday I want to get high/low value for first candle.ie. 00.00AM I tried with 4hr TF: But shows different candle high/low.i valdiate date with nday!=Day(); Please help me to fix the issue. #define  ZEROAM 00      int
Sherif Hasan
Added topic Find Average High/Low for specified no. of candles?
I can found high/low of no.of candles. here: High[iHighest( NULL , 0 ,MODE_HIGH, 4 , 1 )]; Low[iLowest( NULL , 0 ,MODE_LOW, 4 , 1 )]; I want to find average high/low values for speciafied candles.is there any mt4 functions availble? or i use now
Sherif Hasan
Added topic EA missing values when EA restarts!
Hi, I coded ea to run from particular time. eg:1.00am-3.00am at 3am i find high/low of previous 2 bars using iHighest()/iLowest and store in double dhigh/double dlow. EA works fine. problom is when system retstarts or internet connection fails, the
Sherif Hasan
Added topic Possible to display comment with big size font and colour on chart?
Hi, Is this possible to display the comment on chart with bold/big size font and different colour? currently i used to display comments as normal. but i like to display header as bigger font with bold and ey-catch colour. Please help me if there is
Sherif Hasan
Added topic Beginner >> Need support?
I want to place the order on specified candle. is there any mt4 functions available to know thecount of candle. eg: I want to place the order on 4th candle open price !.for that i need to validate the current candle count. Please support me, is there
Sherif Hasan
Added topic Run EA on Filtered Hours?
Hello, I have coded EA to run on specified hours. EA setting as 10.00 - 13.00, so it works for 10.00-13.00. but when i edit the settings as 10.30 - 13.30. which EA starts from 11 and ended with 13.30. what could be the problom? {    
Sherif Hasan
Added topic My EA should run for specified currency! need support?
I would like to run EA for specified currency: For dingle currency i have used following code: if (Symbol() == "USDJPY") { return(0); } Question: If i want to specify multiple currency shall i use following code? if (Symbol() ==
Sherif Hasan
Added topic Run EA with Single Chart for Multiple Pairs!
Hi, I wrote the EA. Which will run one pair per chart. Is this possible to run multi pairs by attaching the EA to single chart. Eg: I attached the EA to EUR/USD chart . currently my EA will work for EUR/USD pairs only. for additional pairs i have to
Sherif Hasan
Added topic How to find Last closed order id,type?
How to find Last closed order id,type
Sherif Hasan
Added topic Close all opened orders!
Hi, I like to close all opened orders at end of the day. i know there is close position one by one.but i like to know is there any function available to close all positions
Sherif Hasan
Added topic How to assign the value of first 4hr candle high[],Low[]?
Hi, How to assign the value of first 4hr candle high[],Low[],which i will validate for remaining candles. int whigh=0; int wlow=0; whigh=High[1]; wlow=Low[1]; when i display the value of whigh,wlow using Comment (whigh,wlow), shows o or 1 Can you
Sherif Hasan
Added topic How to validate one order per candle?
Please help me, How to validate one order per candle
Sherif Hasan
Added topic Need Help with my Coding!
Hi, I wrote EA for 4hrs breakout system. I almost most completed.but still i must tune the EA for exact rules. As i am new coder i don't have idea to correct my coding. My questions are: 4hr TF 1) If current candle applied rules EA place buy/sell
Sherif Hasan
Added topic How do i add my link on mt4 chart?
Hi, I provide free service for my valuable clients and implementing my coding knowledge. i would like to add my link on mt4 chart, when me EA or indicator applied on chart my given link on browser. is this possible to code? I really appreciate the
Sherif Hasan
Added topic Finding PIPS difference?
Hello, I use EMA 288. when the price moves upward of EMA288 place buy order at the same time place sell order when price moves downwards to EMA288. I use additional filter MACD above 0 for buy and below 0 for sell. The problom i need to solve is