What is creating the object?
Posts made by jstap
-
RE: How can I access the previous 3 tops zigzagposted in Questions & Answers
Is in the standard blocks H1, H2, H3, L1, L2, L3
-
RE: HOW TO CREATE EA WITH CUSTOM INDICATOR (Which Has 7 Buffer)posted in Questions & Answers
This indicator seems to have all you need, set up a test so when the signal appears (using a yellow indicator appear block) you do something like add 1 into a variable, and put the variable into a comment to see. Then you will see how to make it work in your EA.
-
RE: close positionposted in Questions & Answers
You can see how to do most of that here: https://fxdreema.com/shared/yISciEoHd change what you need and add what you want
-
RE: How to set Flag to true/false after consecutive losses?posted in Questions & Answers
have you looked at what I put? test with this and add your latest shared link
-
RE: Please help with thisposted in Questions & Answers
To have this as a minus _LOSS_PIPS you need to call it by name with a - like this -_LOSS_PIPS
To have ADD_ORDER_MULTIPLYER * in adjust you need to call by name like this *ADD_ORDER_MULTIPLYER -
RE: how to check last lot to be continue after EA got kick out form chart ?posted in Questions & Answers
Add a shared link rather than pictures to see what you've done.
-
RE: Supply and demandposted in Questions & Answers
You are selecting object by name, then doing nothing with it, and trying to call it with a 0
-
RE: == operation not workingposted in Bug Reports
That is how many candles it took to go from 1 side to the other
-
RE: I Need to know previous 3 Low, or the previous 2 High Of Zigzagposted in Questions & Answers
This is in the standard blocks, The high or low you chose relate to these points
-
RE: Enter when price crosses above/below moving average by "X" pipsposted in Questions & Answers
PIPS_TO_CROSS needs to be written, because right click selected, prevents adding + or - and pips

-
RE: 'No trade nearby' Bug in Martingale Grid Sequenceposted in Bug Reports
Try it without using a block with a grid, also save the value to a terminal variable, so the value is always stored away from your terminal: https://fxdreema.com/shared/PP8Z3ENne
-
RE: Enter when price crosses above/below moving average by "X" pipsposted in Questions & Answers
You can adjust in a modify block, no need for a formula:

You can also add all this into a condition block.
-
RE: Enter when price crosses above/below moving average by "X" pipsposted in Questions & Answers
Add a shared link of candle 0 doing the cross, generally get 1 condition working before moving on to the next.
-
RE: HOW TO CREATE EA WITH CUSTOM INDICATOR (Which Has 7 Buffer)posted in Questions & Answers
Currently, it's that I cannot get the indicator working. Put the buffers into a comment, then tell me what values you have, and whether they match the data window values.
-
RE: Please help with thisposted in Questions & Answers
You can use 100 in the LOSS_PIPS constant, but call it by name using -LOSS_PIPS.
You can follow this link: https://fxdreema.com/shared/sLsWF5Nmb and change the reason for placing a new trade, and your multiplication.
-
RE: Pending orderposted in Questions & Answers
This is your choice as to what you want this to do, test 1 condition until it is doing what you want, then test the 2nd, and then add them together
-
RE: HOW TO CREATE EA WITH CUSTOM INDICATOR (Which Has 7 Buffer)posted in Questions & Answers
I can not get this indicator working on backtest, or live, which means I can not test, what you need to do is put the buffer into a comment, check if this value is the same as the value in your data window, and then you can work out it you can use.
-
RE: how to check last lot to be continue after EA got kick out form chart ?posted in Questions & Answers
Using de init and on init is how to save a value when removing EA from chart, on a random crash you need to save regularly or do something like what's in this link: https://fxdreema.com/shared/6GuQtLpkc
