mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-11 02:33:51 +00:00
Implement botApi in botstate
This commit is contained in:
parent
2891146673
commit
fc4a266b58
|
@ -75,6 +75,7 @@ export enum BotStoreGetters {
|
|||
stakeCurrencyDecimals = 'stakeCurrencyDecimals',
|
||||
strategyPlotConfig = 'strategyPlotConfig',
|
||||
version = 'version',
|
||||
botApiVersion = 'botApiVersion',
|
||||
sysinfo = 'sysinfo',
|
||||
profit = 'profit',
|
||||
botState = 'botState',
|
||||
|
@ -252,6 +253,9 @@ export function createBotSubStore(botId: string, botName: string) {
|
|||
[BotStoreGetters.version](state: FtbotStateType): string {
|
||||
return state.botState?.version || state.version;
|
||||
},
|
||||
[BotStoreGetters.botApiVersion](state: FtbotStateType): number {
|
||||
return state.botState?.api_version || 1.0;
|
||||
},
|
||||
[BotStoreGetters.sysinfo](state: FtbotStateType): SysInfoResponse | {} {
|
||||
return state.sysinfo;
|
||||
},
|
||||
|
|
|
@ -78,6 +78,8 @@ export interface BidStrategy extends PriceBase {
|
|||
|
||||
export interface BotState {
|
||||
version: string;
|
||||
/** Api version - was not provided prior to 1.1 (or 2021.11) */
|
||||
api_version?: number;
|
||||
dry_run: boolean;
|
||||
trading_mode?: string;
|
||||
short_allowed?: boolean;
|
||||
|
|
Loading…
Reference in New Issue
Block a user