I dont think this is way how is bucket block working (I think, it is working alone, without pink blocks)
... if you want calculate profits from logic as you sent, try this:
https://fxdreema.com/shared/PtVi5nFad
Posts made by miro1360
-
RE: Is it possible to create a manage EA?posted in Questions & Answers
-
RE: EXPERT CLOSE WHEN I CLOSE COMPUTERposted in Bug Reports
experts are part of MetaTrader platform, when you close this platform, how can trades open?
-
RE: Detecting support and resistanceposted in Questions & Answers
Lowest price is Price level, not custom (pips) ... change this Custom pips to price level ...
-
RE: pipvalue calculatorposted in Questions & Answers
I dont know for what calculation is used buffer 0, so I cant tell you this .. you need check indicator code for what is used .. or analyse it with block Trace
-
RE: MAGIC NUMBERposted in Questions & Answers
in comments you need set it to see it in comments, because comment is something what you want to be with trade
but anyway, this can be done:
https://fxdreema.com/shared/98Vh9WCNd -
RE: MAGIC NUMBERposted in Questions & Answers
when trade is opened and you are going with mouse hover trade (its ID), magic nr. is displayed
-
RE: Is it possible to create a manage EA?posted in Questions & Answers
send here small example where it is not working, I check on it ...
-
RE: Entry after set-pips from MA crossoverposted in Questions & Answers
because you need take something as fixed point, I taked candle as fixed and compared it to "offseted by pips" MA ... it all depends on "how you look at it"

-
RE: "ADJUST" boxposted in Questions & Answers
in adjust field type exactly:
+15pips
and it automatically converts to 0.0015 or 0.15 depends on pair digits ... -
RE: Is it possible to create a manage EA?posted in Questions & Answers
I am not sure now how this group mode is working when it is set as "All automated and manually opened" ...

in case it is working only for own Magic ID trades + manually opened, you need set other EAs to the similiar magic ID, example:
3 EAs:
magic1 2001
magic2 2002
magic3 2003
+1 EA for monitoring trades with magic0 2000
than set group in this monitor EA as this:

group 1,2,3 are than Magic from EAs 2001,2002,2003 ... hope it will works this way
-
RE: Entry after set-pips from MA crossoverposted in Questions & Answers
nice start into profitable trading
..
-
RE: How to create Stop Loss with twice the value of ATR over x periods?posted in Questions & Answers
use multiplier in "adjust" field ..

-
RE: Is it possible to create a manage EA?posted in Questions & Answers
using pink blocks you can do it well ... magic number set to 0 for manual opened trades ... when you need monitor all pairs, set filter in blocks for All pairs
-
RE: close trade when candle closes downposted in Questions & Answers
if it is offline chart, it can be some misunderstanding in timeframes ..
-
RE: close trade when candle closes downposted in Questions & Answers
in case it is renko, use something as "virtual price value" to close it ...
this virtual price value you save into variable after new trade is opened and its value is:
Buy opened .... vpvBuy=ClosePrice from previous candle - renkoSizeInPriceFraction for Buy, or
Sell opened .... vpvSell=ClosePrice from previous candle + renkoSizeInPriceFraction for Sellafter this use condition block which compare:
if Buy exist ... CurrentPrice<=vpvBuy ... close Buy ... vpvBuy=0 (save to low value)
if Sell exist ... CurrentPrice>=vpvSell ... close Sell ... vpvSell=10000000 (save to big value) -
RE: how to remove a stop loss?posted in Questions & Answers
try one of these two, maybe it is working, maybe not:

-
How to use 2 volume modesposted in Questions & Answers
not sure what exactly this is, but if you need that function from blocks to outside block, place these blocks into some "non executed style" (as false condition block) - it places functions into code and than you can use these functions ...
https://fxdreema.com/shared/ALrlKBdFd

-
RE: Creating additional trade to existing trade coding issueposted in Questions & Answers
look closer into that table ... first trade was closed at SL, so forget it ...
important are second and third trades ... they are opened together in distance 200pips ...
second at price 105.502 and third at 107.502, difference is 2000points and it is equal to 200pips (points are not the same as pips, 1pips=10points) ...

