public VolatilityTableRow AddVolatilityTableRow(int Period, int Accumulations, double Mean, double High, double Low, double StdDev)
            {
                VolatilityTableRow rowVolatilityTableRow = ((VolatilityTableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    Period,
                    Accumulations,
                    Mean,
                    High,
                    Low,
                    StdDev
                };
                rowVolatilityTableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowVolatilityTableRow);
                return(rowVolatilityTableRow);
            }
 public VolatilityTableRowChangeEvent(VolatilityTableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveVolatilityTableRow(VolatilityTableRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddVolatilityTableRow(VolatilityTableRow row)
 {
     this.Rows.Add(row);
 }