Jack Buda
Jack Buda
  • Information
4 years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Jack Buda
Added topic How To hedge properly?
I want to hedge but my ea will only open trades both(buy & sell) at the same instead of 10 pips. please help if you know the problem #property copyright "Copyright 2022, MetaQuotes Ltd." #property link        "
Jack Buda
Added topic Objects Disappear problem
Hi all, my objects disappear & after a few seconds or so they reappear again. If you know the problem please help. void OnTick () {    int Bottom= iLowest ( Symbol (), 0 , MODE_LOW , 75 , 1 + 40 );       ObjectDelete
Jack Buda
Added topic Pending TakeProfit Problem
I have a problem when my EA places a pending order and my trade hits TP. I get lot size (0.01)* 5pips = 0.42 profit instead of 0.50. With JPY pairs its less 0.37 etc. Here is my code below, please help if you know the problem. extern double
Jack Buda
Added topic How to modify pending orders (BuyStop & SellStop) ?
Hi All I would like to modify pending orders (BuyStop & SellStop). It only modifies once instead of several times. Please help if you know the problem. #property strict extern double TakeProfit= 10.5 ; extern double StopLoss= 10.5 ; int
Jack Buda
Added topic How to prevent EA to open order/s on multiple pairs?
Hi all I want to run my EA on all pairs but to open on one pair only. So for an example, EA is currently running on EUR/USD,GBP/USD,XAU/USD etc. The EA decides to open a trade/s on EUR/USD, my EA will open trade/s on other pairs. Please help on how I
Jack Buda
Added topic StringGetCharacter is preventing my ea from trailing
Hi all, I'm having a problem as to why StringGetCharacter is preventing my ea from trailing. #property copyright "Copyright 2022, MetaQuotes Ltd." #property link        " https://www.mql5.com " #property version
Jack Buda
Added topic For Loop & Array problem
Hi all, I would like to open my trades when a certain amount of figures is reached so that the EA can open x amount of trades. So for example: 2 figures 1 trade, 5 figures 2 trades, 7 figures 4 trades. I know there's is a way as i have tried using
Jack Buda
Added topic How to Create Supply & Demand EA?
Hi All I want to create supply & Demand EA & not indicator. The code below will not show rectangle wicks when there are low/high wicks. The EA will show me the current price in rectangles instead of wicks. If you know the problem, please
Jack Buda
Added topic Problem Deleting pending order with time (MQL5)
Hi All I have a problem with deleting a pending order/s after time. I don't want to delete all orders I just want to delete pending order/s after time. If you know the problem please help. for ( int Loop= OrdersTotal ()- 1 ;Loop>= 0 ;Loop--)
Jack Buda
Added topic OrderDelete Problem
Hi all I would like to delete a pending order after 10 pips, that's if the buy order is in profit after 10 pips. With the code below it will delete sell stop all the time. I know you can delete by time function after a few minutes, hours & days
Jack Buda
Added topic Counting pending orders with Ctrade problem
Hi all I have a problem when counting pending orders using C trade. It opens too many pending orders instead of one. If you know what the problem is, please help. int OrdersPending() {    int Pending= 0 ;    for ( int b=
Jack Buda
Added topic Problem with Counting pending orders with MQL5
Hi all I would like to count pending orders properly by opening one pending order at a time. Unfortunately it opens many orders. I know I'm doing something wrong but I can not figure out what's wrong. Please help if you know whats the problem. Thank
Jack Buda
Added topic Grid Problem
Hi all I want to open the 3rd trade at 100 pips. Below the code I've shown it will not open the 3rd trade at 100 pips, instead it will open the 2nd trade at 50 pips which is correct. I would like to know what I'm I doing wrong. If you know the
Jack Buda
Added topic How To use OrderLots() & OrderProfit() properly?
Hi all I'm in need of help with the code below. I would like to open 2 more trades if/once they go in 5 pips profit. #property strict extern int MagicNumber= 111 ; //+------------------------------------------------------------------+ //| Expert tick
Jack Buda
Added topic EA Not opening when Period function is used
Hi all I would like my ea to check if daily chart (Engulfing&Harami), if it's buy/sell then i would like to do the same on the M5 Chart. Below is my code, please help if you know the problem
Jack Buda
Added topic Problem with Parabolic EA
hi all Please help, i have a problem with my PSAR EA. The problem is it opens properly as i want it to, problem is when it closes it opens another trade. I would like for it to open a trade & close THE TRADE that's all. I know there's something
Jack Buda
Added topic Lot Size with 0.1
Hi there all I'm looking for a way i can use my lot Size with 0.1, I tried using the code below it works but I'm not satisfied with it. Below $100 it wont trade at all. I want my Lot size to trade in 0.1's. When i change the "riskpercent" to 0.1 it's
Jack Buda
Added topic EA opens Many Trades, How to Open 1 buy & 1 sell?
Hi there all If you can please help, i would like to open 1 buy & 1 sell. For some reason my EA opens many trades, I know there's a way to open 1 buy & 1 sell. By using "if (OrdersTotal()<1)" i don't want to use that because i want to use
Jack Buda
Added topic OrdersTotal() work on 2 or more Charts by opening trades
Hi all I wonder if its possible to have OrdersTotal() on 2 different charts. I want to use OrdersTotal()==0 (if there's any alternative) for opening trades on different charts(Open 2 trades (buy & sell) on EUR/USD & 2 trades (buy & sell)
Jack Buda
Added topic Invalid ticket OrderClose error 4108 & invalid stoploss for OrderModoify
Hi there, I have minor experience in MQL4, i have encountered a 2 problems with Invalid ticket Order Close error 4108 & invalid stop loss for OrderModoify but for BUY ORDER. Below i have posted the code & picture for the  If anyone can
12