At the top of your platform do you have the correct logo for your broker?
Posts made by jstap
-
RE: back testposted in Questions & Answers
-
RE: Buy pending orders in gridposted in Questions & Answers
buy above is a stop, below is a limit...reverse for sells
-
RE: Buy Pending Orders in Grid - Keeps Looping - Is this a bug?posted in Questions & Answers
You are checking for trades not pending orders:
-
RE: historical dataposted in Questions & Answers
Are you using the platform that came with the broker? Generally this would be identical but not always...
-
RE: example: Save variables into file and read them back [advanced]posted in Tutorials by Users
bool as a 0 or 1 so int can be used
-
RE: When to use Sell, TP/SL or Close Positionposted in Questions & Answers
buy buys, sell sells, as standard TP/SL means a distance from the opening.
-
RE: example: Save variables into file and read them back [advanced]posted in Tutorials by Users
You are confusing things,
bool = true/false
string = text -
RE: Is this information accurate and correct?posted in Questions & Answers
This is also in the ? for the blocks
-
RE: Grid function bugposted in Bug Reports
@tswaldi Because this is an old project, and with no shared link it is impossible to say if it is good or not. Create a question, after starting your project, add a shared link and say what you are trying to do. This is a rough idea of how I create grids: https://fxdreema.com/shared/vu0xShJZ
-
RE: how to place buy trade at 09:30 am and 10:30 amposted in Questions & Answers
@vijithtr Does this not place a trade twice in a day?
-
RE: a simple order not workingposted in Questions & Answers
What group is placing the trades? because it's not this EA...
-
RE: Help with the on and off button that draws the scanner on the mt5 chartposted in Questions & Answers
@DragonZueloTrends @l-andorrà is probably correct, and you have lots to dissect, am I right in saying this code comes from miro? To help with this you need to ascertain what blocks are causing the problem, also onchart is a lot longer to work on problems.
-
RE: I NEED TO LOGICposted in Questions & Answers
The balance only changes on a trade closing. this code in the box will put a value into the variable:
AccountBalance()
AccountEquity()There are many codes you can add to these boxes
-
RE: candle countposted in Questions & Answers
Sometimes the MetaTrader indicators won't work with too low a number, add 2 int variables and this code to the bottom of the existing code:
Variable1 = iBarShift(NULL,0,lastKijunTenkanCross1,true);
Variable1= iBarShift(NULL,0,lastKijunTenkanCross2,true);This should put the time IDs into the variables
-
RE: odd or evenposted in Questions & Answers
You can do it like this: https://fxdreema.com/shared/yNXr7S7xc
