Skip to content

Commit

Permalink
Fix wrong removed
Browse files Browse the repository at this point in the history
  • Loading branch information
erlonfs committed Sep 29, 2018
1 parent 56ab8f3 commit a8dd0ec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
Binary file modified first_candle.mq5
Binary file not shown.
14 changes: 2 additions & 12 deletions src/FirstCandle.mqh
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ private:
color _corBuy;
color _corSell;
bool _isDesenhar;
bool _isEnviarParaTras;
bool _isPreencher;

void VerifyStrategy(int order) {

Expand Down Expand Up @@ -114,8 +112,8 @@ private:
ObjectSetInteger(0, objName, OBJPROP_BORDER_COLOR, clrBlack);
ObjectSetInteger(0, objName, OBJPROP_STYLE, STYLE_SOLID);
ObjectSetInteger(0, objName, OBJPROP_WIDTH, 1);
ObjectSetInteger(0, objName, OBJPROP_BACK, _isEnviarParaTras);
ObjectSetInteger(0, objName, OBJPROP_FILL, _isPreencher);
ObjectSetInteger(0, objName, OBJPROP_BACK, true);
ObjectSetInteger(0, objName, OBJPROP_FILL, true);

//ARROW PRICE
objName = "SETA" + (string)price;
Expand Down Expand Up @@ -166,14 +164,6 @@ public:
_isDesenhar = isDesenhar;
}

void SetIsEnviarParaTras(bool isEnviarParaTras) {
_isEnviarParaTras = isEnviarParaTras;
}

void SetIsPreencher(bool isPreencher) {
_isPreencher = isPreencher;
}

void SetColorBuy(color cor) {
_corBuy = cor;
};
Expand Down

0 comments on commit a8dd0ec

Please sign in to comment.