Bucket of trades to get the value, then bucket of trades to view the value
Posts made by jstap
-
RE: how to get sum of profit/loss for buy tradesposted in Questions & Answers
-
RE: how to get sum of profit/loss for buy tradesposted in Questions & Answers
Closed trades, or running trades?
-
RE: Help with Fractalsposted in Questions & Answers
Fx most the most part prevents the need for any coding, occasionally though there is no choice. learn the simple first, then you can move on to coding stuff
-
RE: ichimoku chinko span line valueposted in Bug Reports
I think you should, as that is how MQL5 says it should be, are you putting that variable into a comment to see what's returned? If you add a shared link rather than a picture blocks can be looked at
-
RE: Help with Fractalsposted in Questions & Answers
By arrows, I mean the ones created by the fractal indicator, this would go into custom code.
iFractals(NULL,0,MODE_UPPER,0) put this in a comment as text code input, you will see the value returned, then check and work out what you want to do next with it.
-
RE: EA ignores other conditionsposted in Questions & Answers
It can't because a condition only passes if the condition is true, test 1 condition at a time then you can see the problem and, fix any issues
-
RE: When RSI Cross 45 level buy / When RSI Cross 55 Level Sellposted in Questions & Answers
I think I have worked out what you mean, describe more of what you are trying to achieve. if x> 45, do not allow it again until the value drops below 40? If so you will need to use bool variables, x>45 set bool true - >40 set bool false, then if bool if false x> can happen, but if false x> can't happen
-
RE: How to use (and) and (or) blockposted in Questions & Answers
I find if I want 2 things to be true in a separate tree, I use these blocks through "and" or "or" to create the desired result, without affecting the original tree's result
-
RE: pip away from last stopposted in Questions & Answers
pink for each trade - pink pips away - pink once per trade - buy/sell
-
RE: Help with Fractalsposted in Questions & Answers
Interesting but I don't think that is how fractals work double:
iFractals(
string symbol, // symbol
int timeframe, // timeframe
int MODE_LOWER or MODE_UPPER, // line index
int shift // shift
);
This code will give you the value of an arrow, shift is a number to choose how far back is the arrow. Put this into a comment, work out how to use it, and then you will have to have a set of conditions (or code), to decide whether the arrows are on the way DN or UP. -
RE: my bot dont works in thid condition cand anybody help me?posted in Questions & Answers
Connect more than 1 condition in a row, using different IDs, I think this is what you are trying to achieve
-
RE: When RSI Cross 45 level buy / When RSI Cross 55 Level Sellposted in Questions & Answers
Say more of what you mean, that will buy if RSI crossed above 45
-
RE: When RSI Cross 45 level buy / When RSI Cross 55 Level Sellposted in Questions & Answers
I can help you build it, make a start, add a shared link and say what's not working.
-
RE: check distance between pending orders and market priceposted in Questions & Answers
Bucket of pending orders will get the total combined value, use pink pips away, use oldest to newest or newest to oldest, depending on which value is relevant
-
RE: Want to show text on chart as Up/down trend when condition is trueposted in Questions & Answers
Add a shared link rather than pictures, under your condition draw text, and redraw with the same name to print the opposite condition.
-
RE: pip away from last stopposted in Questions & Answers
So if a trade is closed by SL place a pending (opposite or same) 10 pips away?
-
RE: my bot dont works in thid condition cand anybody help me?posted in Questions & Answers
It won't work because the same candle will never be a bull and a bear:

-
RE: take profit as object on chartposted in Questions & Answers
In the blocks you have the option to use a group TP, will this work?
