-
Why did you post your MT4
question in the Root / MT5 Systems
section instead of the MQL4 section, (bottom of the Root page?)
General rules and best pratices of the Forum. - General - MQL5 programming forum
Next time post in the correct place. The moderators will likely move this thread there soon. - You haven't stated a problem, you stated a want. You have only four
choices:
- Search for it.
- Beg at
- Coding help - MQL4 programming forum
- Requests & Ideas (MQL5 only!) - Trade FX - Expert Advisors and Automated Trading - MQL5 programming forum
- Free coding for your trading system.. - General - MQL5 programming forum
- I will code & automate your strategy for free - General - MQL5 programming forum
- Make It No Repaint Please! - MQL4 programming forum
- Write ea for free - MQL5 programming forum
-
MT4: Learn to code it.
MT5: Begin learning to code it. If you don't learn MQL4/5, there is no common language for us to communicate. If we tell you what you need, you can't code it. If we give you the code, you don't know how to integrate it into yours. - or pay (Freelance) someone to code it.
Hiring to write script - General - MQL5 programming forum
No free help

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
hey guys,
i have following simple code i want to write with buy sell as iam newbie to this language learning to code from very basic.....
i have this amibroker code written by me...just want to write in mt4 language. i want signal on every candle so iam not using exrem function of amibroker
Plot( C, "Close", ParamColor("Color", colorDefault ), styleNoTitle | ParamStyle("Style") | GetPriceStyle() );
Buy = C > O;
Sell = C < O;
Cover=Buy;
Short=Sell;
shape = Buy * shapeUpArrow + Sell * shapeDownArrow;
PlotShapes( shape, IIf( Cross(H,Buy), colorWhite, colorWhite ),0, IIf( Buy, Low, High ) );