-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathorder.ts
49 lines (41 loc) · 1.95 KB
/
order.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import {initClient} from './initClient';
import {OrderUpdateRequest, OrderCreateRequest, Direction, OrderTimeInForce, OrderType} from '../dealing';
async function main(): Promise<void> {
const client = await initClient();
const firstGetAllOrdersSession = await client.rest.dealing.getAllOrders();
firstGetAllOrdersSession.workingOrders.forEach(order => {
console.info(`Working order deal id: "${order.workingOrderData.dealId}".`);
});
console.info(`There are ${firstGetAllOrdersSession.workingOrders.length} orders.`);
const createOrderRequest: OrderCreateRequest = {
currencyCode: 'USD',
direction: Direction.BUY,
epic: 'UD.D.TSLA.CASH.IP',
expiry: '-',
forceOpen: true,
guaranteedStop: false,
level: 811.4,
size: 1,
timeInForce: OrderTimeInForce.GOOD_TILL_CANCELLED,
type: OrderType.LIMIT,
};
const createOrderSession = await client.rest.dealing.createOrder(createOrderRequest);
console.info(`Your order deal reference is "${createOrderSession.dealReference}".`);
const secondGetAllOrdersSession = await client.rest.dealing.getAllOrders();
console.info(`There are ${secondGetAllOrdersSession.workingOrders.length} orders now.`);
const confirmOrderSession = await client.rest.dealing.confirmTrade(createOrderSession);
console.info(`Creating order with ${confirmOrderSession.dealStatus}.`);
const updateOrderRequest: OrderUpdateRequest = {
level: 519.1,
timeInForce: OrderTimeInForce.GOOD_TILL_CANCELLED,
type: OrderType.LIMIT,
};
const updateOrderSession = await client.rest.dealing.updateOrder(confirmOrderSession.dealId, updateOrderRequest);
console.info(`Your updated order deal reference is "${updateOrderSession.dealReference}".`);
const closeOrderSession = await client.rest.dealing.deleteOrder(confirmOrderSession.dealId);
console.info(`Your deleted order deal reference is "${closeOrderSession.dealReference}".`);
}
main().catch(error => {
console.error(error);
process.exit(1);
});