General - page 1974

  Client API  (4)
Hello, is there any chance you release client api ? Or protocol specyfications I'd like to write linux version of client -- Greetz ^^MAg^^
  Change Lots  (5)
Hi all... What I've to do to change lots? int LotCalc(double Risk){ int vLots=0; if (UsePct >0 && Risk>0) vLots=MathFloor(AccountBalance()*(UsePct/100)/((Risk/MarketInfo (Symbol(), MODE_POINT))*10)); if (UsePct >0 && Risk==0) vLots = MathFloor(AccountBalance()*(UsePct/100)/1000); if (vLots>MaxLots)...
I have being trading for a while and have visited a lot of forums but one thing always puzzles and that is: I read about both a lot of newbies and seasoned traders chasing the holy grail in Expert trading, do not get me wrong all is good but what happened to manuel trading. Also is anyone trading
  Third party  (3)
Hi all We are a small trading house and we have our own trading software that we plugs into different brokers though API. Some of our employees wants to trade forex with our software. I see there is an client API for version3 but not for version4.There is 3 different API available for version 4,...
sorry if i'm offtopic, i'm trying to apply bollinger bands to RSI. Is there any way I can do this w/out creating a custom indicator? if not, any ideas how to go about doing this?
this bit of code doesnt seem to buy, any ideas why? if(Close[2]ma) { OrderSend(Symbol(),OP_BUY,lots,Ask,3,stop,Ask+profit,"",2005,0,Green); } it should buy when a new candle closes above the moving average and the previous closed below it
Hi all, I develop my first expert advisor. I've just a small problem. I don't want more than one BUY order and SELL order per day. By example, if I have a signal for open a Buy order : It won't be open if a Buy order was opened during the day (00h00 GMT ==> 00h00 GMT) and it's the same thing for the...
  expiration date  (5)
Hi all How would one do to put an expiration date on an indicator or EA. Like to make an indicator stop showing on chart or EA stop trading if date (or servers date) is after like January 15 2006 ? I tried with the daysofyear but, didnt do what I wanted. any ideas would be appreciated, thanks...
Hello, Just wanted to know if MT4 can call a Java based DLL file? Also, can MT4 call a straight C++ DLL file? Thank you. Much appreciated !! Regards RJF
Hello, In Build 186 (and before as well), during backtesting , when trying to open positions larger than specified number of lots (about 8192 Lots in a live connection and about 105 lots in an offline connection) I receive an error regarding invalid trade size. Is there any way to increase the...
  Expert Advisor Builder for MT4  (60   1 2 3 4 5 6)
Somebody has coded an online version of auto mql builder for mt4. Check it out at https://www.mql5.com/go?link=http://sufx.core.t3-ism.net/ExpertAdvisorBuilder/ Is online version easier to use?
Hi Slawa, I am curious to know what will happen if I would not return from start() function and was waiting until next tick or a timeout. The purpose is that there are gaps between ticks and I would like to Open my order as close as possible before new tick. So if new tick would start at, lets say,...
Can I use this formula to calculate the swap of Gold by interset [lots * long_or_short / 100 /360] Please give me an example, thanks
Any know if it is posible to programe an indicator which allows multiple timeframes ( to add for example 3 indicators in same chart Macd for example) And for example looks at weekly daily and hour 4 timeframes ? Jannik
I am declaring a extern int IndCnt=0; Using the above variable in 2 different custom functions, the variable is incremented only in START () routine.. My problem is, when I open the “Meta Trader” Terminal for the first time under 15 mins period.. it is showing last incremental count of 20;...
Hi, maybe this is trivial question, but I've looked on the forum and coould not find answer for it. Is it possible to achive more than 90% quality in backtesting with MT4?
Hi there Traders, I am a trader for 14 months now, live trading for 3 months and going well. Must say, did'nt know it would be that hard to become profitable but yea.. sweat and blood will bring you somewhere or what? I trade based on technical analy. but am interested in Fundem. analy. Anyone know...
I had the program open and a trade was in play and all of a sudden I got no connection and then it changed to common error in the bottom corner. I tried to repair it and then reinstall it and no go. then I uninstalled it rebooted and reinstalled the program and I can get a new account but if I try...
Dear all I try to add a moving average to macd histogram. The color of the line will change if the histogram cross this line. So, I use two arrays, ind_buffer5 and ind_buffer6 to hold the moving average values. I don't why my indicator can only show the value in ind_buffer5 and the value of...
Hi, can someone please help me convert this MQL code to MQ4: if IsIndirect(Symbol) = True then Exit (Description: Returns logical True if the instrument is calculated using the reverse method, otherwise returns Flase) I would also be grateful if some could explain what the function actually does as...
What indicators would you recommend for scalping. They could be default or custome. Thanks For Use on M1 chart
  Scalping Indicator  (37   1 2 3 4)
What indicators would you recommend for scalping. They could be default or custome. Thanks For Use on M1 chart
Hi, can anyone plot the slope of a JMA moving average as an histogram with green bars if slope is positive and red bars if slope is negative? Much like the indicator that is currently available which is the EmaAngleZero that plots the slope of an EMA as an histogram Thanks
Hi, I seek an expert based on the points pivots. I would like to code a rather simple system of trading on the points pivots (for example purchase has R1+7pips with TakeProfit has R2-7pips and sale has S1-7pips with TakeProfit has S2+7pips..etc) but I would need to start from an existing expert if...
Sorry for the silly question, I am completly new in this...! I have an indicator formula in plain text from a thread. I try to cut and paste in the meta editor. But I make something wrong, it does not save the indicator. Where should I paste the formula text?? Thanxs for helping a...
I keep getting it every now and then on OrderModify and OrderClose calls. What is it? How can I avoid it? Thanks
Hej just wanted to show you a little system that im am trying out. Dont have an EA but would like one, this is just a couple of ideas. EURUSD Buy Signals: ~~~~~~~~ CCI (50) - over 140 stdDev (7) - over 0.00075 i_Trend - green over 0.0018 & red under 0.0018 Sell Signals: ~~~~~~~~ CCI...
Hello, I would like to assign hotkey with my script that use mouse drop, but the current implementation doesn't allow that, i.e. i cannot drop the mouse after pressing hotkey. Is it possible to add the feature ?
Dear All, Could anyone tell me how to declare a array and than use the iMAOnArray or IMA function and to program a moving average on indicators, like macd histogram or momentum? Please help me. Urgent.I have spend few days on working this. Thank you very much. Victor
  DLL Import  (1)
I use a program that generates signals for trading.Is it possible to connect to it's DLL and get results(Buy or Sell) in MT4?