getDefaultConfig

declare function getDefaultConfig(): Readonly<{
CC_SCHEDULE_AWAIT_MINUTES: number;
CC_AVG_PRICE_CANDLES_COUNT: number;
CC_PERCENT_SLIPPAGE: number;
CC_PERCENT_FEE: number;
CC_MIN_TAKEPROFIT_DISTANCE_PERCENT: number;
CC_MIN_STOPLOSS_DISTANCE_PERCENT: number;
CC_MAX_STOPLOSS_DISTANCE_PERCENT: number;
CC_MAX_SIGNAL_LIFETIME_MINUTES: number;
CC_MAX_SIGNAL_GENERATION_SECONDS: number;
CC_GET_CANDLES_RETRY_COUNT: number;
CC_GET_CANDLES_RETRY_DELAY_MS: number;
CC_MAX_CANDLES_PER_REQUEST: number;
CC_GET_CANDLES_PRICE_ANOMALY_THRESHOLD_FACTOR: number;
CC_GET_CANDLES_MIN_CANDLES_FOR_MEDIAN: number;
CC_REPORT_SHOW_SIGNAL_NOTE: boolean;
CC_BREAKEVEN_THRESHOLD: number;
CC_ORDER_BOOK_TIME_OFFSET_MINUTES: number;
CC_ORDER_BOOK_MAX_DEPTH_LEVELS: number;
CC_AGGREGATED_TRADES_MAX_MINUTES: number;
CC_MAX_NOTIFICATIONS: number;
CC_MAX_SIGNALS: number;
CC_MAX_LOG_LINES: number;
CC_ENABLE_CANDLE_FETCH_MUTEX: boolean;
CC_ENABLE_DCA_EVERYWHERE: boolean;
CC_ENABLE_PPPL_EVERYWHERE: boolean;
CC_POSITION_ENTRY_COST: number;
}>;

Retrieves the default configuration object for the framework.

Returns a reference to the default configuration with all preset values. Use this to see what configuration options are available and their default values.