so to be specific maybe say candle close/open at 08:00, so when its 08:00 every morning a trade just opens
Latest posts made by pips 0
-
RE: Betting systemposted in Bug Reports
-
RE: Betting systemposted in Bug Reports
hi @jstap thank you so much it works well, I have another question how do i open a trade daily at exactly the same time say 08:00, how exactly are the conditions laid out and also is it all under the ontick tab?
-
RE: Betting systemposted in Bug Reports
@jstap https://fxdreema.com/shared/YGn6rH2Cd
i used chatgbt to convert the code from mql4 to mql5
-
RE: Betting systemposted in Bug Reports
@jstap yes and it gives the following errors
Compilation errors
'MarketInfo' - undeclared identifier
')' - expression expected
',' - unexpected token
'Symbol' - some operator expected
')' - unexpected token -
RE: Betting systemposted in Bug Reports
@l-andorrĂ https://fxdreema.com/shared/WzEI7QhLb

I am trying to use the code below instead of 0.1:
0.02*AccountBalance() / MarketInfo(Symbol(),MODE_MARGINREQUIRED)Or this:
(2.0/100)*AccountBalance() / MarketInfo(Symbol(),MODE_MARGINREQUIRED)seems its not compartible with mql5 maybe works on mql4, so i would like to have my initial risk at 2% of my account balance instead of having a fixed lot size of 0.1
-
Betting systemposted in Bug Reports
hello @fxDreema Does this work on MT5 i am getting an error i want to replace the initial 0.1 with a fixed risk of 2% as well.

-
RE: Betting custom sequence risking % of Equityposted in Questions & Answers
@jstap im trying to open my trades using custom sequence, the only option i see is under base volume where i can manually enter the lot size for first trade of the sequence, what i want to do instead is have the option to open trades at 1% of account size (having a stoploss of 2Atr for each trade) then thereafter if a loss occurs the trades follow the sequence
for example if my sequence is 1,2,3 then first trade risks 1% of account size and stoploss is always 2atr, if loss occurs second trade risks 2% and third risks 3% of account size then it resets when i make profit.
the big issue is under Base volume where i need maybe custom code to calculate 1% of account balance. i hope it makes sense