Hi Cja,
I was wondering if you would be so kind enough to update the "Daily Data" & "Signal Bars" indicators to automatically switch between 5th or 6th decimal quotes (no user input necessary), and to also be able to show fractional pip spread with JPY type of pairs?
Below is an example of the small addition to your code that would allow it to do the above. This is my little way of giving back and thanking you for your help and great indicators. 
I will post a pic so that you can see the difference between the "BarClock v3" indicator that is displaying the spread for USDJPY incomparison to your "Daily Data" indicator. I'll also post the "BarClock" indicator for folks that might be interested in it...
PHP Code:
//+----------------------------------------------------------------------------------------+
//| BarClock v3 (AAD Mods).mq4 |
//| Original Copyright ©2005, Nick Bilak B-Clock.mq4 |
//| http://www.ForexFactory.com/ |
//| All Mods/Updates By AAD... |
//+----------------------------------------------------------------------------------------+
#property copyright "Copyright ©2009, AAD..."
#property link "www.ForexFactory.com"
/*
Updated: 07/11/2008 - I added customizable options (color, display text near bars on/off, and text size) along with a minor code fix to this indicator. It now deletes the time text near the bars when the indicator is removed or when the "Display Time Near Bars" option is set to false. AAD...
Updated: 11/17/2008 - I added the broker spread and changed the name to BarClock (AAD Mods v2)...
Updated: 11/18/2008 - I added the broker spread display around the top left hand corner of the chart and changed the name to BarClock (AAD Mods v2a)...
Updated: 12/05/2008 - I made some display code fixes, and also so that it won't delete other text on a chart when closing the BarClock indicator. I changed the name to BarClock v2 (AAD Mods)...
Updated: 05/18/2009 - I added an auto 5/6 digit quote switch in the code for the spread display to be fully compatible with brokers that use up to 6 digit quotes. I changed the name to BarClock v3 (AAD Mods)...
---
*/
#property indicator_chart_window
// Global.
double DblPoints;
double SP1;
//+----------------------------------------------------------------------------------------+
//| Custom indicator initialization function |
//+----------------------------------------------------------------------------------------+
int init()
{
DblPoints=GetPoints();
SP1=Spreads();
}
//+----------------------------------------------------------------------------------------+
//| Custom indicator iteration function |
//+----------------------------------------------------------------------------------------+
// Auto 5/6 Digit Broker Quote Switch.
double GetPoints()
{
if(Digits==3 || Digits==5) DblPoints=Point*10;
else DblPoints=Point;
return(DblPoints);
}
// Auto JPY Pair Style Digit Display Switch.
double Spreads()
{
if(Digits==3) SP1=Digits-2;
else SP1=Digits-4;
return(SP1);
}
int start()
{
// Spread.
double SPRD=(Ask-Bid)/DblPoints;
string SPREAD=DoubleToStr(SPRD,SP1);