forex-tester-custom-robot-api 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# forex-tester-custom-
|
|
1
|
+
# forex-tester-custom-robot-api
|
|
2
2
|
|
|
3
3
|
TypeScript types and runtime API for custom strategies in [Forex Tester Online](https://forextester.com/).
|
|
4
4
|
|
|
@@ -7,7 +7,7 @@ Install this package in a custom strategy project, extend `Robot`, then build an
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install forex-tester-custom-
|
|
10
|
+
npm install forex-tester-custom-robot-api
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
## Write a strategy
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
OrderSelectMode,
|
|
23
23
|
OrderType,
|
|
24
24
|
PriceType,
|
|
25
|
-
} from 'forex-tester-custom-
|
|
25
|
+
} from 'forex-tester-custom-robot-api'
|
|
26
26
|
|
|
27
27
|
export default class MaCrossover extends Robot {
|
|
28
28
|
private fastPeriod!: InputNumber
|