Same
biantoro kunarto:
Same
Thanks mr Biantoro
Same
you're welcome
Siti Latifah:
NULL = read the current chart
Symbol() ???
NULL = read the current chart
Mohammad Soubra:
thanks ALL
so
if I want to write a code inside the .... ontick() function with a condition same like the below:
if (iRSI(NULL,0,14,0))>70.......sell
- the problem in the above ontick() condition that will sell each tick but I want to sell once only using the ontick() not start() function
PLZ HELP
Check for open order.
If there is no check operating conditions
Jose Miguel Soriano:
How?
Check for open order.
If there is no check operating conditions
Try this:
if ( OrdersTotal() == 0 ) { // Check buy or sell signal // if there is a signal open trade }
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
just a simple question in mql4 language
------------------------------------------------------------------
what is the difference between using NULL or SYMBOL() in the EAs:
if iRSI(NULL,...............
if iRSI(SYMBOL(),.................