File tree Expand file tree Collapse file tree 3 files changed +421
-2
lines changed
Dashboard/Dashboard/Pages Expand file tree Collapse file tree 3 files changed +421
-2
lines changed Original file line number Diff line number Diff line change @@ -126,8 +126,8 @@ protected override async Task OnTradeUpdate(Instrument instrument)
126126 return ;
127127 }
128128
129- var orders = ( await adapter . GetOrders ( new ( ) { Source = true } ) ) . Data ;
130- var positions = ( await adapter . GetPositions ( new ( ) { Source = true } ) ) . Data ;
129+ var orders = ( await adapter . GetOrders ( default ) ) . Data ;
130+ var positions = ( await adapter . GetPositions ( default ) ) . Data ;
131131 var performance = await Performance . Update ( [ adapter ] ) ;
132132 var scaleX = await Scales [ assetX . Name ] . Update ( seriesX ) ;
133133 var scaleY = await Scales [ assetY . Name ] . Update ( seriesY ) ;
Original file line number Diff line number Diff line change 1+ @inherits BasePage
2+
3+ @page " /options/break-protection"
4+
5+ <ControlsComponent Adapters =" Adapters" >
6+ <ChartsComponent Name =" Prices" @ref =" DataView" />
7+ <ChartsComponent Name =" Delta" @ref =" DeltaView" />
8+ <ChartsComponent Name =" Variance" @ref =" VarianceView" />
9+ <ChartsComponent Name =" Performance" @ref =" PerformanceView" />
10+ <OrdersComponent Name =" Orders" @ref =" OrdersView" />
11+ <PositionsComponent Name =" Positions" @ref =" PositionsView" />
12+ <TransactionsComponent Name =" Transactions" @ref =" TransactionsView" />
13+ <StatementsComponent Name =" Statements" Adapters =" Adapters" @ref =" StatementsView" />
14+ </ControlsComponent >
You can’t perform that action at this time.
0 commit comments