Heiken-Ashi-Smoothed/five decimal places

 

Hi,my fellow  traders,

I am using Heiken-Ashi-Smoothed(inputs: 2/5/3/2) for my EA robot.

And I use Data Window for manual trading purpose  together with my EA.

But I see only four decimal places for the values of  Heiken-Ashi-Smoothed like as :

value 2: 1.0607

value 3: 1.0603

value 4: 1.0604

It would be very much appreciated if any friend could  let me know how I can have five decimal places seen  in the Data Window like as:

value 2: 1.06072

value 3: 1.06033

value 4: 1.06045


Thanks in advance.


Yoonhee Park

 
Yoonhee Park: I am using Heiken-Ashi-Smoothed(inputs: 2/5/3/2) for my EA robot.

And I use Data Window for manual trading purpose  together with my EA.

But I see only four decimal places for the values of  Heiken-Ashi-Smoothed like as :

It would be very much appreciated if any friend could  let me know how I can have five decimal places seen  in the Data Window like as:

Just change the source code to use the same number of digits as the symbol in use!

//--- Initialise Buffer Indices and other Properties
int OnInit(void)
{
   // ...

   IndicatorSetInteger( INDICATOR_DIGITS, _Digits );   // Set Number of Significant Digits (Precision)

   // ...
}
 
Fernando Carreiro:

Just change the source code to use the same number of digits as the symbol in use!


Thanks much, Fernando,

As I don't know the program code, is there any way to adjust it just on MT4 menu ?

 
Yoonhee Park: As I don't know the program code, is there any way to adjust it just on MT4 menu ?

No.

Reason: