
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
On MT4 I had the code for trigger "alert once on the bar current":
static bool TriggerOnlyThisBar;
...............
...............
if (......trigger condition......) && TriggerOnlyThisBar!=Bars
{Alert(Symbol()," TEST ");
TriggerOnlyThisBar = Bars;
}
on mt5 I have replaced Bars (MT4) with Bars (symbol (), period_current) but does not work.
Someone explains to me where it is error?
Thanks to all.