FastQuant.Bar.Bar C# (CSharp) Method

Bar() public method

public Bar ( Bar bar ) : System
bar Bar
return System
        public Bar(Bar bar) : base(bar)
        {
            InstrumentId = bar.InstrumentId;
            Type = bar.Type;
            Size = bar.Size;
            OpenDateTime = bar.OpenDateTime;
            Open = bar.Open;
            High = bar.High;
            Low = bar.Low;
            Close = bar.Close;
            Volume = bar.Volume;
            OpenInt = bar.OpenInt;
        }

Same methods

Bar::Bar ( ) : System
Bar::Bar ( System.DateTime openDateTime, System.DateTime closeDateTime, int instrumentId, BarType type, long size, double open, double high, double low, double close = 0.0, long volume, long openInt ) : System