mqmerryment: Please
code this for me
- There are many pivot indicators in the CodeBase.
- You have only four choices:
- Search for it,
- learn 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.
- Beg at Coding help - MQL4 and MetaTrader 4 - MQL4 programming forum or Need help with coding - General - MQL5 programming forum or Free MQL4 To MQL5 Converter - General - MQL5 programming forum or Requests & Ideas (MQL5 only!),
- or pay (Freelance) someone to code it.
No free help
urgent 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
Please code this for me in Metatrader4: R1,R2,R3 & PP, S1,S2,S3. permanent on cht. Arrow outputs prefared?
// -- CALCULATION FOR PIVOTS ---
PP[i] = (Highpoint[i]+Lowpoint[i]+Closepoint[i])/3;
R1[i] = (2*PP[i]) - Lowpoint[i];
S1[i] = (2*PP[i]) - Highpoint[i];
R2[i] = PP[i] + (Highpoint[i] - Lowpoint[i]);
S2[i] = PP[i] - (Highpoint[i] - Lowpoint[i]);
R3[i] = Highpoint[i] + (2*(PP[i] - Lowpoint[i]));
S3[i] = Lowpoint[i] - (2*(Highpoint[i] - PP[i]));