Hi guys
I need an EA that when the price hits a drawn trend line, alerts us either by SMS or a sound in MT4. I would be thankful if somebody posts it or if it is coded.
I will code your pivot EAs for no charge 28 replies
I will code your scalping EAs for no charge 163 replies
Oanda MT4 - Indicators and EAs not showing 2 replies
EAs and indicators relating to moutaki... 22 replies
InterbankFX has loaded its MT4 platform with custom EAs, indicators and scripts 1 reply
DislikedI need to code FUNCTION to look into the trading history and give me the latest closed position is just like count orders typeIgnored
Disliked{quote} Haven't done it, but seems like code similar to this should do it: int reportCount = 0, newestOrderType = -1; int historyCountTotal = OrdersHistoryTotal(); for ( int i = 0; i<historyCountTotal; i++) { if ( true == OrderSelect(i, SELECT_BY_POS,MODE_HISTORY) { if ( newestOrderType == -1 ) { newestOrderType = OrderType(); } if ( OrderType() == newestOrderType ) { reportCount ++; } } } Print( (newestOrderType==OP_SELL)?"Sell Count = ":"Buy Count = ",IntegerToString(reportCount)); Print( (newestOrderType==OP_BUY)?"Sell Count = 0":"Buy Count =...Ignored
Dislikedi created an EA in MT4 and i'm trying to make it work in MT5 because the EA uses multiple pairs and i want the backtest possibilities of MT5 it kinda works, but the backtests is SO SLOW, i let all the night and i have only a few trades Can anyone take a look at the MT5 EA and find out why it is so slow and if I did the conversion corretly? that would be awesome! thanks Jeff {file} {file}Ignored
DislikedHello dear great coders, i have an indy here that shows just one time an arrow for buy or sell and i get the next signal only if there was a reverse signal before. so if i have a buy signal, the next buy signal apear only if i had a sell signal before. Is it possible to change that? Thanks in advance{file}
Ignored
Disliked{quote} It is really inspiring that many FFF are interested about my simple but amazing system...please look attached image 1st i draw golden horizontal line b/c we find extreme high candle which i called rejections candle for go short (uptrend)or extreme bottom which i called bounce for go long (for down trend ) then i draw green horizontal just bottom of the extreme high/bottom or set up candle then we will wait for break and enter .i attached another set-up for you look at golden hz /arrow and green hz/arrow.I hope cyber sir may be interested...Ignored
Disliked{quote} First, this is what your indicator does. It places arrows on the chart when the WPR (Williams Percentage Range) indicator crosses the -20 or -80 level (see the red lines), per this call to iWPR in the code: iWPR(NULL, 0, l_period_24, li_4), with the restriction you note. Also, it performs a 15 bar ATR and uses that value to - detect a significant Gap (2*the ATR) in the last 9 bars, or - a large movement in the last 9 bars (3 bars with a range of 4.6*the ATR). l_period_24 is normally 15, it is set to 3 if a gap is detected and to 4 if a large...Ignored
Disliked{quote} Hello CLASSY, Tks - understood.Are you using the FXPT_SpikeBars indicator? What the meaning of the dotted lines? Are they the way that Golden Lines were put in the indicator? Tks
Ignored
Disliked{quote} Attached is the indicator used in that post, Indicator coded by Classy i guess.. {file}Ignored
Disliked{quote} Cyber Master Sir.You already done lot.Sir,We read and learn stg/system/method from here and there then we mix with our experience so some time it is not exact i mean copy book .i am really sorry sir if i confuse you.Now let me last try to much more precise in my description, sir what i am doing manually ..... i consider/search /set-up any time frame any pair extreme hi or low of the candle then i draw one horizontal line top wick /below wick (look gold) and horizontal ( green )then wait for failed candle mean reach to extreme hi/lo and if...Ignored
Disliked{quote} idris mate here is the explanation by original coder/creator Great Cyber maste. @subbsuper it is not my code .i have no coding ability..... Post 13,036Ignored
Disliked{quote} Play with this (press the Count Button) - I'm not sure OrderType() returns one of the 6 valid types for closed orders. {file}Ignored