FastQuant.TradeDetector.method_0 C# (CSharp) Méthode

method_0() private méthode

private method_0 ( FastQuant.Fill fill_1, double double_1 ) : FastQuant.Fill
fill_1 FastQuant.Fill
double_1 double
Résultat FastQuant.Fill
        private Fill method_0(Fill fill_1, double double_1)
        {
            Fill fill = new Fill(fill_1);
            fill.Commission *= double_1 / fill.Qty;
            fill.Qty = double_1;
            return fill;
        }