Forex Forum - EarnForex - View Single Post - Alert question
Thread: Alert question
View Single Post
  #1 (permalink)  
Old 8th April 2010, 18:36
Default Avatar
intraforex intraforex is offline
Junior Member
 
Join Date: Jan 2010
Location: italy
Posts: 21
Thanks: 0
Thanked 0 Times in 0 Posts
Default Alert question

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.
Reply With Quote