define variable in the global scope. Read "MQL4: Global variables"

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
if(Bid>HPriceB && OrderType()==OP_BUY && OrderMagicNumber()==1)
{
HPriceB=Bid;
}
But it seems every time it reruns the adviser with each tick , it forgets the value of HPriceB and resets it to zero. What do I do to get it to remember the value?