3commas-typescript icon indicating copy to clipboard operation
3commas-typescript copied to clipboard

param 'from' is missing

Open sample-usr opened this issue 4 years ago • 0 comments

Hi, It looks like the param from is missing from getSmartTradeHistory as described here

export interface SmartTradeHistoryParams {
    account_id?: number | string;
    pair?: string;
    type?: 'simple_buy' | 'simple_sell' | 'smart_sell' | 'smart_trade' | 'smart_cover';
    page?: number | string;
    per_page?: number | string;
    status?: 'all' | 'active' | 'finished' | 'cancelled' | 'failed';
    order_by?: 'created_at' | 'updated_at' | 'closed_at' | 'status';
    order_direction?: 'asc' | 'desc';
}

sample-usr avatar Jan 05 '22 13:01 sample-usr