@ixily/activ
Version:
Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.
21 lines (20 loc) • 644 B
TypeScript
import { ITradeIdeaImage } from './trade-idea-image.i';
import { ITradeIdeaStrategSumaryCalc } from './trade-idea-strategy-summary-calc.i';
export type ITradeIdeaStrategyOrdersType = 'ALLOCATION' | 'STANDARD';
export interface ITradeIdeaStrategy {
reference: string;
uniqueKey?: string;
name?: string;
description?: string;
createdAt?: number;
changedAt?: number;
image?: ITradeIdeaImage;
externalLink?: string;
ordersType?: ITradeIdeaStrategyOrdersType;
summaryCalc?: ITradeIdeaStrategSumaryCalc;
portfolio?: {
[key: string]: number;
};
portfolioAllocated?: number;
raw?: any;
}