mirror of
https://github.com/chrisnov-it/quantumbotx.git
synced 2026-07-28 03:07:53 +00:00
78737b6835
- Update `.gitignore` to include `lab/` for backtesting and raw data. - Refactor `app.py` to improve error handling and logging. - Remove deprecated files: `core/bot_logic.py`, `core/bots/base_bot.py`, `core/bots/manager.py`, `core/db/database.py`, `core/routes/api_analysis.py`, `core/routes/api_bots_analysis.py`, `core/strategies/logic_ma.py`, `core/strategies/logic_rsi.py`. - Modify multiple files to enhance bot management, routing, and strategy handling. - Update JavaScript and HTML templates for better UI and functionality.
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
'use strict';
|
|
|
|
const index = require('../scope/index.cjs');
|
|
const index$1 = require('../atrule/index.cjs');
|
|
const index$2 = require('../pseudo/index.cjs');
|
|
const indexParse = require('../node/index-parse.cjs');
|
|
const index$3 = require('../../tokenizer/index.cjs');
|
|
|
|
const config = {
|
|
parseContext: {
|
|
default: 'StyleSheet',
|
|
stylesheet: 'StyleSheet',
|
|
atrule: 'Atrule',
|
|
atrulePrelude(options) {
|
|
return this.AtrulePrelude(options.atrule ? String(options.atrule) : null);
|
|
},
|
|
mediaQueryList: 'MediaQueryList',
|
|
mediaQuery: 'MediaQuery',
|
|
condition(options) {
|
|
return this.Condition(options.kind);
|
|
},
|
|
rule: 'Rule',
|
|
selectorList: 'SelectorList',
|
|
selector: 'Selector',
|
|
block() {
|
|
return this.Block(true);
|
|
},
|
|
declarationList: 'DeclarationList',
|
|
declaration: 'Declaration',
|
|
value: 'Value'
|
|
},
|
|
features: {
|
|
supports: {
|
|
selector() {
|
|
return this.Selector();
|
|
}
|
|
},
|
|
container: {
|
|
style() {
|
|
return this.Declaration();
|
|
}
|
|
}
|
|
},
|
|
scope: index,
|
|
atrule: index$1,
|
|
pseudo: index$2,
|
|
node: indexParse,
|
|
tokenize: index$3.tokenize
|
|
};
|
|
|
|
module.exports = config;
|