Beispiel #1
0
 internal ExecutionEntry(NotifyCollectionChangedAction action, InstrumentViewModel instrument, Execution execution)
 {
     Action     = action;
     Instrument = instrument;
     Execution  = execution;
 }
 internal ChildOrderEntry(NotifyCollectionChangedAction action, InstrumentViewModel instrument, BitFlyerChildOrder childOrder)
 {
     Action     = action;
     Instrument = instrument;
     ChildOrder = childOrder;
 }
Beispiel #3
0
 internal PositionEntry(NotifyCollectionChangedAction action, InstrumentViewModel instrument, BitFlyerPosition execution)
 {
     Action     = action;
     Instrument = instrument;
     Position   = execution;
 }
 internal PositionEntry(NotifyCollectionChangedAction action, InstrumentViewModel instrument, BitMexPosition position)
 {
     Action     = action;
     Instrument = instrument;
     Position   = position;
 }
Beispiel #5
0
 internal TradeEntry(NotifyCollectionChangedAction action, InstrumentViewModel instrument, BitMexTrade trade)
 {
     Action     = action;
     Instrument = instrument;
     Trade      = trade;
 }