Implement botApi in botstate

This commit is contained in:
Matthias 2021-11-23 07:33:21 +01:00
parent 2891146673
commit fc4a266b58
2 changed files with 6 additions and 0 deletions

View File

@ -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;
},

View File

@ -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;