mirror of
https://github.com/c9s/bbgo.git
synced 2024-11-10 09:11:55 +00:00
91 lines
2.4 KiB
JavaScript
91 lines
2.4 KiB
JavaScript
import axios from "axios";
|
|
|
|
const baseURL = process.env.NODE_ENV === "development" ? "http://localhost:8080" : ""
|
|
|
|
export function testDatabaseConnection(dsn, cb) {
|
|
return axios.post(baseURL + '/api/setup/test-db', {dsn: dsn}).then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function configureDatabase(dsn, cb) {
|
|
return axios.post(baseURL + '/api/setup/configure-db', {dsn: dsn}).then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function saveConfig(cb) {
|
|
return axios.post(baseURL + '/api/setup/save').then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function addSession(session, cb) {
|
|
return axios.post(baseURL + '/api/sessions', session).then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function attachStrategyOn(session, strategyID, strategy, cb) {
|
|
return axios.post(baseURL + `/api/setup/strategy/single/${strategyID}/session/${session}`, strategy).then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function testSessionConnection(session, cb) {
|
|
return axios.post(baseURL + '/api/sessions/test', session).then(response => {
|
|
cb(response.data)
|
|
});
|
|
}
|
|
|
|
export function queryStrategies(cb) {
|
|
return axios.get(baseURL + '/api/strategies/single').then(response => {
|
|
cb(response.data.strategies)
|
|
});
|
|
}
|
|
|
|
|
|
export function querySessions(cb) {
|
|
return axios.get(baseURL + '/api/sessions', {})
|
|
.then(response => {
|
|
cb(response.data.sessions || [])
|
|
});
|
|
}
|
|
|
|
export function querySessionSymbols(sessionName, cb) {
|
|
return axios.get(baseURL + `/api/sessions/${ sessionName }/symbols`, {})
|
|
.then(response => {
|
|
cb(response.data.symbols)
|
|
});
|
|
}
|
|
|
|
export function queryTrades(params, cb) {
|
|
axios.get(baseURL + '/api/trades', {params: params})
|
|
.then(response => {
|
|
cb(response.data.trades)
|
|
});
|
|
}
|
|
|
|
export function queryClosedOrders(params, cb) {
|
|
axios.get(baseURL + '/api/orders/closed', {params: params})
|
|
.then(response => {
|
|
cb(response.data.orders)
|
|
});
|
|
}
|
|
|
|
export function queryAssets(cb) {
|
|
axios.get(baseURL + '/api/assets', {})
|
|
.then(response => {
|
|
cb(response.data.assets)
|
|
});
|
|
}
|
|
|
|
export function queryTradingVolume(params, cb) {
|
|
axios.get(baseURL + '/api/trading-volume', {params: params})
|
|
.then(response => {
|
|
cb(response.data.tradingVolumes)
|
|
});
|
|
}
|
|
|
|
|