Forum

How to get the total number of opened orders and select them in MQL4?

Hello Guys, i am little confused in finding the total no. of opened positions. I am only seeing OrderTotal, which is total no of opened and pending positions. It's occurring in Mql4. In Mql5 we simply get opened positions by PositionsTotal(); and pending positions by OrdersTotal(); . If any one have

How to create Neural Network with Mql5?

Hey, my specific question in creating a neural network is, how do you train a neural network in mt5? Is it by optimizing all the weights that goes into the neuron? If it the case we cannot say it as learning, instead it is a deep optimization. Also in mt4 the optimization cannot handle large number

How to code inside the ea to copy trades to other symbols?

Hey guys i am creating an ea in which i want to copy trades to other symbols on the acc using symbols in input. How do i do that . Please give any reference to study

How to receive money after completing freelance?

Hey i have completed a free lance work. The customer is also satisfied. Where do i get the money from? The customer is saying it has sent the money to mql5, get it from there. I have not sent the final version yet. I am not seeing any money added in mql5 payments. Should I send him the final

Why does this code only take sell position?

double redMa = iMA ( _Symbol ,indicatorTimeFrameRed,maPeriodRed, 0 ,maMethodRed,appliedPriceRed,redMaShift); redMa= NormalizeDouble (redMa, _Digits ); double blueMa = iMA ( _Symbol ,indicatorTimeFrameBlue,maPeriodBlue, 0 ,maMethodBlue,appliedPriceBlue,blueMaShift); blueMa= NormalizeDouble

Does product rating decrease with the no. of products added?

Hey, this question is for registered seller in mql5 market place. Does product rating decrease with the no of products added. Earlier when i uploaded products it had good ratings, but now days the product rating is low and also there are no demo downloads. Please share your experience

How to post video screen shot in screen shot section?

I am adding a product in ml5 market. I am able to put a you tube video, but i want to add a video in screen shot section. Do we have to upload all videos in screenshot section or upload screenshot with other data type. Please respond if you know the answer

How to set decimal value in CSpin Edit box.

Hey i am creating a graphical panel and i can only set and get the integer value. How can i set the value of double type or with decimal

How to get value form an edit graphical object. I am only getting the value for Spin edit.

How can i get and use the value form edit to do certain task in graphical panel? I am using this thread

Creating Check Box.

#include <Controls\CheckBox.mqh> CAppDialog app; CCheckBox checkbox_fixedLot; checkbox_fixedLot.Create( 0 ,LABEL_CHECKBOXFIXEDLOT, 0 , 10 , 200 , 20 , 20 ); checkbox_fixedLot.Text( "Use Fixed Lot" ); checkbox_fixedLot.Color( clrBlue ); //checkbox_fixedLot.Color(clrWhite);