@kodiak-finance/orderly-portfolio 2.8.16-rc.3 → 2.8.16-rc.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -6
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +18 -18
package/dist/index.d.mts
CHANGED
|
@@ -565,6 +565,7 @@ interface TradeData {
|
|
|
565
565
|
|
|
566
566
|
interface SymbolPerformanceMetrics {
|
|
567
567
|
totalPnL: number;
|
|
568
|
+
grossPnL: number;
|
|
568
569
|
totalVolume: number;
|
|
569
570
|
totalFees: number;
|
|
570
571
|
totalTrades: number;
|
|
@@ -646,8 +647,8 @@ declare const useSymbolPerformanceScript: (symbol?: string) => {
|
|
|
646
647
|
aggregationWindow: AggregationWindow;
|
|
647
648
|
setAggregationWindow: React$1.Dispatch<React$1.SetStateAction<AggregationWindow>>;
|
|
648
649
|
aggregationWindowTypes: AggregationWindow[];
|
|
649
|
-
|
|
650
|
-
|
|
650
|
+
isNetPnL: boolean;
|
|
651
|
+
setIsNetPnL: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
651
652
|
dateRange: {
|
|
652
653
|
from: Date;
|
|
653
654
|
to: Date;
|
package/dist/index.d.ts
CHANGED
|
@@ -565,6 +565,7 @@ interface TradeData {
|
|
|
565
565
|
|
|
566
566
|
interface SymbolPerformanceMetrics {
|
|
567
567
|
totalPnL: number;
|
|
568
|
+
grossPnL: number;
|
|
568
569
|
totalVolume: number;
|
|
569
570
|
totalFees: number;
|
|
570
571
|
totalTrades: number;
|
|
@@ -646,8 +647,8 @@ declare const useSymbolPerformanceScript: (symbol?: string) => {
|
|
|
646
647
|
aggregationWindow: AggregationWindow;
|
|
647
648
|
setAggregationWindow: React$1.Dispatch<React$1.SetStateAction<AggregationWindow>>;
|
|
648
649
|
aggregationWindowTypes: AggregationWindow[];
|
|
649
|
-
|
|
650
|
-
|
|
650
|
+
isNetPnL: boolean;
|
|
651
|
+
setIsNetPnL: React$1.Dispatch<React$1.SetStateAction<boolean>>;
|
|
651
652
|
dateRange: {
|
|
652
653
|
from: Date;
|
|
653
654
|
to: Date;
|