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
where you will see in the account history or the terminal the magicnumber ? i can only see a comment and some EA's print there there names and others only Buy/Sell (which is useless...) clarc
I am using the tools to generate the statements. It is fro this thread https://www.mql5.com/en/forum/173442 and some others.
Indicators to show the time
hi,newdigital,Since There is some EA with timefilter for different brokers.do we have some indicators for us to know the time for different brokers.
That might easy for us to adjust the time.
Thank you very much
I replied here https://www.mql5.com/en/forum/175806
Help!!!
Does anybody can do this kind of indicator based on MTF-MA as is shown on the chart.
The principle is simple: When the MTF-MA is trading Up there is an indicator in the separate window has the color blue when is treding down the color is red.
Thank you.
PS(this indicator must work alone without the MTF-MA on chart)...
AO and AC experts
In view of the interest that Ozfx is generating I was just wondering if anyone is aware of EA's that follow trades strictly in accordance with the Awesome Oscillator description here Awesome Oscillator Technical Indicators, Technical Analysis
and of course for accelerator oscillator at the same place.
Thanks in advance for any help.
Does anybody can do this kind of indicator based on MTF-MA as is shown on the chart.
The principle is simple: When the MTF-MA is trading Up there is an indicator in the separate window has the color blue when is treding down the color is red.
Thank you.
PS(this indicator must work alone without the MTF-MA on chart)...We could modify codersguru xpma in a easy way to help you.
How to store last 6 trades
I want to decide the risklevel by the last 6 win/loss. My codes do not work. Can someone help to check the codes? Thank you.
My idea is:
// set up 7 boxes to store the result of the last 6 trades
int box0=0;
int box1=0;
int box2=0;
int box3=0;
int box4=0;
int box5=0;
int box6=0;
int risklevel=0
// if last trade wins, box0 =1
if ( OrderProfit() > 0 )
box0=1;
// if last trade loses, box0 = 0
if ( OrderProfit() < 0 )
box0=0;
// shift one space to store new value
box6=box5;
box5=box4;
box4=box3;
box3=box2;
box2=box1;
box1=box0;
// add up the value of the 6 boxes to see how many wins and losses
risklevel = box1 + box2 + box3 + box4 + box5 + box6;
// decide risklevel, risklevel = 0-6 ...
Dear Sear,
I am wondering how to code this:
When EMAs cross (EMACrossFlag=1), then wait to ADX cross. If ADX cross within 5 candles OK buy. But if no ADX cross within 5 candles (EMACrossFlag=0)
I wont to reset EMACrossFlag after 5 candles. I need the code that count the candles. Pleas.
Regards.
Look at Brainwashing EA 1d version: this version was coded to wait the bars for iTrend confirmation.
This Brainwashing 1d EA is very well coded. I did not test it yet. I am testing 1c and 1c1 version. But if you can read the code so you may take it as an example.
Sorry can not help so much as I am not a coder.