UNPKG

@ixily/activ

Version:

Alpha Capture Trade Idea Verification. Blockchain ownership proven trade ideas and strategies.

19 lines (18 loc) 491 B
import { ITradeIdeaIdeaAlternativeProviderSymbol, ITradeIdeaImage } from '..'; export interface ICreateIdeaIdeaRequest { title: string; asset: { ticker: string; description: string; alternativeProviderSymbols?: ITradeIdeaIdeaAlternativeProviderSymbol[]; image?: ITradeIdeaImage; }; trade: { conviction?: number; allocation?: number; direction: 'long' | 'short'; }; notes: { commentary: string; }; }