import { Milliseconds, PercentageOutOfOne } from '../types'; export interface StopLoss { isActive: boolean; intervalMs: Milliseconds; /** A percentage out of 1 */ percentage: PercentageOutOfOne; }