bugs09:
 
Hi
i am making an expert adviser in which i need to calculate wick size (upper and lower both) of last candle/bar . How can i calculate these wick sizes?
High - MathMax(Open, Close); MathMin(Open, Close) - Low;
bugs09: How can i calculate these wick sizes?
How do you think you do?double bodyTop = MathMax( Open[i], Close[i] ), bodyBot = MathMin( Open[i], Close[i] ), upper = High[i] - bodyTop, bottom = botdyBot - Low[i]; // Was that so hard?
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
  
Hi
i am making an expert adviser in which i need to calculate wick size (upper and lower both) of last candle/bar . How can i calculate these wick sizes?
Thanks