This method has been superseded by the GUI Data Tool extension.
Syntax
void EODDataIntegrity( WealthScript obj, bool MissingData, float RangePct )Parameter Description
  
    | obj | An instance of the WealthScript object | 
  
    | MissingData | Test for missing data and holidays | 
  
    | RangePct | Display any bar with a range greater than RangePct(%) 
 | 
Description
This utility consists of a procedure to aid in testing the integrity of EOD data. 
Note: Passing the 
WealthScript object to the method (as shown below) required to function.
Example
using System;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using WealthLab;
using Community.Components; // EODDataIntegrity here
namespace WealthLab.Strategies
{
	public class MyStrategy : WealthScript
	{
		protected override void Execute()
		{
			Utility u = new Utility(this); // pass WealthScript as "this"
			u.EODDataIntegrity( false, 80 );
		}
	}
}