UNPKG

@ixily/activ

Version:

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

20 lines (18 loc) 580 B
import { ITradeIdeaIdeaAlternativeProviderSymbol, ITradeIdeaImage } from '..' export interface ICreateIdeaIdeaRequest { title: string asset: { ticker: string description: string alternativeProviderSymbols?: ITradeIdeaIdeaAlternativeProviderSymbol[] image?: ITradeIdeaImage // if want to set or change image } trade: { conviction?: number // This is necessary in case of strategy.ordersType === 'STANDARD' allocation?: number // This is necessary in case of strategy.ordersType === 'ALLOCATION' direction: 'long' | 'short' } notes: { commentary: string } }