-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathposition.ts
64 lines (53 loc) · 2.19 KB
/
position.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import {initClient} from './initClient';
import {
Direction,
PositionCloseRequest,
PositionCreateRequest,
PositionOrderType,
PositionUpdateRequest,
} from '../dealing';
async function main(): Promise<void> {
const client = await initClient();
const firstGetAllPositionsSession = await client.rest.dealing.getAllOpenPositions();
firstGetAllPositionsSession.positions.forEach(position => {
console.info(`Position deal id: "${position.position.dealId}".`);
});
console.info(`There are ${firstGetAllPositionsSession.positions.length} positions.`);
const createPositionRequest: PositionCreateRequest = {
currencyCode: 'USD',
direction: Direction.BUY,
epic: 'UD.D.TSLA.CASH.IP',
expiry: '-',
forceOpen: true,
guaranteedStop: false,
level: 900.4,
orderType: PositionOrderType.LIMIT,
size: 1,
};
const createPositionSession = await client.rest.dealing.createPosition(createPositionRequest);
console.info(`Your position deal reference is "${createPositionSession.dealReference}".`);
const secondGetAllPositionsSession = await client.rest.dealing.getAllOpenPositions();
console.info(`There are ${secondGetAllPositionsSession.positions.length} positions now.`);
const confirmSession = await client.rest.dealing.confirmTrade(createPositionSession);
console.info(`Creating position with ${confirmSession.dealStatus}.`);
const updatePositionRequest: PositionUpdateRequest = {
limitLevel: 950.4,
};
const updatePositionSession = await client.rest.dealing.updatePosition(confirmSession.dealId, updatePositionRequest);
console.info(`Your updated position deal reference is "${updatePositionSession.dealReference}".`);
const closePositionRequest: PositionCloseRequest = {
dealId: confirmSession.dealId,
direction: Direction.SELL,
expiry: createPositionRequest.expiry,
level: 860.4,
orderType: createPositionRequest.orderType,
size: createPositionRequest.size,
};
const closePositionSession = await client.rest.dealing.closePosition(closePositionRequest);
console.info(`Your position "${closePositionSession.dealReference}" was closed`);
process.exit(0);
}
main().catch(error => {
console.error(error);
process.exit(1);
});