Disliked{quote} Yup, now I get why the values got updated. I restarted the EA, that's why xD. Brilliant mind, thank You. I really-really appreciated itPeople like You make internet a better place
Ignored
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
Disliked{quote} Yup, now I get why the values got updated. I restarted the EA, that's why xD. Brilliant mind, thank You. I really-really appreciated itPeople like You make internet a better place
Ignored
Disliked{quote} Well... I can only speak for what I have seen so far, hahah btw, what's the use of int start() then? Take careIgnored
Disliked{quote} start is what actually runs the program code. MQL programs are event based so every time a new tick (event) comes in, mt4 automatically calls start() and runs your code. start() is tick based. In an indicator start runs immediately after the indicator is loaded but in an EA start waits for a tick to run the first time. I changed it to OnTimer idk i use that more.Ignored
DislikedDear coder/expert, Could you pls make a MTF STO and a MTF WPR indicator with time frames control just ike the attched picture did? Thanks in advance. Haruteri. {image} {file} {file} {file} {file} {file}Ignored
Disliked{quote} Gladly buddy. I enjoy helping people learn coding or answer info about it so anyone ask away.Ignored
DislikedDear coder/expert, Could you pls make a MTF STO and a MTF WPR indicator with time frames control just ike the attched picture did? Thanks in advance. Haruteri. {image} {file} {file} {file} {file} {file}Ignored
Disliked{quote} To interested Any dual MA cross EA or Indicator can be uses as price cross MA - >> Set the fast MA as - (Fast Period =1, Fast Method = 0 = Simple MA, Fast Shift = 0, Fast Price = 0 = close) = current close price. If any not understand - here further diagram explanation - https://www.forexfactory.com/showthr...97#post9765697 The attached EA does not meet the OP requirements in that it is not fully automatic - others may find useful. The EA is semi-automatic. The EA can be set to take trades automatically on bar close...Ignored
Disliked{quote} Thanks for responding to my request. On coding, so, you are a coder, that is good and your zeal in helping people out is commendable. Do your have video on how to code script, a beginner's guide, cause I want to learn how to code script.Ignored
DislikedMy Buy order and sell order are not executing The error is Ordersend 130 Coder Gurus pl. have a look at the buy order function and find the error Thanks //************************* void buy() { double stoplosslevel = Ask - (StopLoss*pips); double takeprofitlevel = Ask+ (TakeProfit*pips); // logik of checking any previous orders if(OrdersTotal()==0) // logik of checking if stop loss is set to zero if(StopLoss==0) bsl=0; else bsl= Ask-(StopLoss*pips); // logik of checking if take profit is set to zero if(TakeProfit==0) btp=0; else btp= Ask+(TakeProfit*pips);...Ignored
Disliked{quote} I wish I did, I think that is a good idea to pursue. Until then I just pm with people a lot. {quote} Error 130 = Incorrect Stoploss or Takeprofit. The values you are sending for either the sl or tp are not what mt4 is expecting. A good fix is to normalize the value by points: yourStoploss=floor(yourStoploss/Point)*Point If this does not fix it then you are placing the SL or TP too close to the price.Ignored
Dislikedhello need helping input price to the MA line to this indicator from{image} become this {image} thanks a lot {file}Ignored
DislikedHi, I hope all are well and in good health. Can someone please add an option to enter an offset in pips on this 3TierLondonBreakout Indicator? Its currently displaying on the chart the high and low of a certain time. I just want to see it a few pips higher/lower (inputted by user) of what the indicator is showing. I hope this is clear. Thank You in advance. Kind regards. {file}Ignored