created new config lib
This commit is contained in:
parent
bc14acaeba
commit
68a4c2d550
36 changed files with 2681 additions and 134 deletions
48
libs/config-new/config/development.json
Normal file
48
libs/config-new/config/development.json
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{
|
||||
"debug": true,
|
||||
"logging": {
|
||||
"level": "debug",
|
||||
"format": "pretty"
|
||||
},
|
||||
"providers": {
|
||||
"eod": {
|
||||
"name": "eod-historical-data",
|
||||
"enabled": true,
|
||||
"priority": 1,
|
||||
"apiKey": "demo",
|
||||
"tier": "free",
|
||||
"rateLimit": {
|
||||
"maxRequests": 20,
|
||||
"windowMs": 60000
|
||||
}
|
||||
},
|
||||
"yahoo": {
|
||||
"name": "yahoo-finance",
|
||||
"enabled": true,
|
||||
"priority": 2,
|
||||
"rateLimit": {
|
||||
"maxRequests": 100,
|
||||
"windowMs": 60000
|
||||
}
|
||||
},
|
||||
"ib": {
|
||||
"name": "interactive-brokers",
|
||||
"enabled": false,
|
||||
"priority": 0,
|
||||
"gateway": {
|
||||
"host": "localhost",
|
||||
"port": 5000,
|
||||
"clientId": 1
|
||||
},
|
||||
"marketDataType": "delayed"
|
||||
},
|
||||
"qm": {
|
||||
"name": "quotemedia",
|
||||
"enabled": false,
|
||||
"priority": 3,
|
||||
"username": "",
|
||||
"password": "",
|
||||
"webmasterId": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue