>>344
コンストラクタでは初期値だけ入れて、newする時にプロパティに代入するのが良いと思う。

var trade = new Trade()
{
 stock_code = X,
 trace_type = Y,
....
};