code help

 

Hi All,


How can I find the distance between moving average and current low?


What is the formula used for that.?

Thank for any help.
 
FxTrader_:


Hi All,


How can I find the distance between moving average and current low?


What is the formula used for that.?

Thank for any help.
iMA(NULL, 0,14,0,MODE_SMA,PRICE_CLOSE,0)-Low[0];
 

Hi Sheriff,

Thank you for you asistance, BUT the above code it show more than 8 digets.

I need it to show only the Result.



Thank u for help.

 

You just need to modify the output to show the desired precision: 

   double diff=iMA(NULL, 0,14,0,MODE_SMA,PRICE_CLOSE,0)-Low[0];
   Print(DoubleToStr(diff,Digits));
 

Thank your for your assistance,


But I'm not able to show it in the screen,


Regards
 

Print statements will only appear in the log - I just used it as an example.

If you need it somewhere else (e.g. in a text or label), the logic remains the same: use StringFormat or DoubleToStr to define the precision.

You haven't posted your code so we're all shooting blind here... 

 
Thank you so much
Reason: