Skip to content

Commit b35eff4

Browse files
authored
Merge pull request #14 from erlonfs/develop
Melhorias
2 parents 3a458ed + c2dc036 commit b35eff4

File tree

8 files changed

+4
-4
lines changed

8 files changed

+4
-4
lines changed

Experts/Benchmark/benchmark.mq5

38 Bytes
Binary file not shown.
38 Bytes
Binary file not shown.
38 Bytes
Binary file not shown.
38 Bytes
Binary file not shown.

Include/Framework/Base.mqh

402 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Include/Robots/FirstCandle.mqh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ private:
4444

4545
if (!HasPositionOpen()) {
4646
_waitBuy = false;
47-
Buy(_entrada, _auxStopLoss, _auxStopGain, getNameRobot());
47+
Buy(_entrada, _auxStopLoss, _auxStopGain, getRobotName());
4848
}
4949

5050
}
@@ -64,7 +64,7 @@ private:
6464

6565
if (!HasPositionOpen()) {
6666
_waitSell = false;
67-
Sell(_entrada, _auxStopLoss, _auxStopGain, getNameRobot());
67+
Sell(_entrada, _auxStopLoss, _auxStopGain, getRobotName());
6868
}
6969

7070
}

Include/Robots/TheLineOfDivision.mqh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ private:
5555

5656
if (!HasPositionOpen()) {
5757
_waitBuy = false;
58-
Buy(_entrada, _auxStopLoss, _auxStopGain, getNameRobot());
58+
Buy(_entrada, _auxStopLoss, _auxStopGain, getRobotName());
5959
}
6060

6161
}
@@ -75,7 +75,7 @@ private:
7575

7676
if (!HasPositionOpen()) {
7777
_waitSell = false;
78-
Sell(_entrada, _auxStopLoss, _auxStopGain, getNameRobot());
78+
Sell(_entrada, _auxStopLoss, _auxStopGain, getRobotName());
7979
}
8080

8181
}

0 commit comments

Comments
 (0)