Daniel Cioca / Profile
- Information
|
2 years
experience
|
0
products
|
0
demo versions
|
|
0
jobs
|
0
signals
|
0
subscribers
|
Daniel Cioca
Added topic Load video
Hello! On this forum is it allowed to load short video for better describing/showing info? How? Thanks
Daniel Cioca
Added topic Bracketing Orders
Hi ! Searched online about this, but didn’t find anything simple and easy to understand. How are bracketing orders different from normal market orders with SL and TP ?
Daniel Cioca
Added topic Objects Destroy function
Hello! So I have this Dialog Box with other objects on it. #include <Controls\Dialog.mqh> #include <Controls\Button.mqh> CAppDialog MyDialog; CButton MyButton; int AppDialogTop= 30 ,AppDialogLeft= 50
Daniel Cioca
Added topic Dialog Box Save Last Position
Hello, I have these functions: void PositionSave() { int handle = FileOpen ( __FILE__ + ".bin" , FILE_WRITE | FILE_BIN ); if (handle== INVALID_HANDLE ) {
Daniel Cioca
Added topic Trade Panel
Hello! Trying to make a trade panel , started to read the documentation and already figured out ( kind of) how to make buttons and basicaly objects with code. One thing I cant find.. there is this box where you enter different values, and from where
Daniel Cioca
Added topic connection dtails
Hi guys! I was wondering, these numbers from MT4. What do they mean? I observe that sometimes MT4 is not moving smoothly. Like when I want to add an object or something, or moving mouse pointer over the chart, it is freezing for little moment. And I
Daniel Cioca
Added topic Pending Order Activate
Hello! Is it any other method to detect when pending order is activating? Other then loop through all orders and search by OrderType() ? For example a have 5 pendings open, and when one of them activates, I want to trigger other actions
Daniel Cioca
Added topic Error
Hi guys! Am getiing these errors: 2022.12.02 15:30:43.589 Notifications: failed send request [0] receive response failed [12002] 2022.12.02 15:30:43.589 Notifications: 'order #51652826 sell stop 0.06 EURUSD at 1.05287 activated at price 1.05080' not
Daniel Cioca
Added topic Fractal
Hello guys! Trying to get the latest fractal value and I came up with this: double GetLowFractal() { double val= 0 ; for ( int i= 0 ; i< 300 ; i++) {
Daniel Cioca
Added topic Language Basic
Hello guys! I have one question is it any diference between static int some; //or int static some; Thanks
Daniel Cioca
Added topic OnDeinit()
Hello! I want store some variables in my EA as GlobalVariable in case EA stops, so it can recover. My question is if EA stops for no reason ( power failure or terminal failure or internet loss) is the OnDeinit() function in the EA will
Daniel Cioca
Added topic NewBar
Hello Guys! I have also a question which is also time related. So I have the following newbar function: void OnTick() { newbar(_Symbol,PERIOD_D1); } bool newbar( string Ssymbol, int _timeframe) { bool bar = false ;
Daniel Cioca
Added topic StopLoss TakeProfit as filters
Hello! I would like to close trades on filters of TP and SL, instead of placing SL and TP in OrderSend() function. I find it difficult to identify when a trade is closed on SL or TP, and as I may need to trigger some actions when TP or SL is hit, I
Daniel Cioca
Added topic How/When do we take Profits ..scale out/take all ??
Hi guys! Still don't understand this concept that everybody is presenting ( that are presenting/teaching) - ... they say...set your risk /reward to 1/2 1/3 1/5 ..whatever..1/X...and then when they are showing a model of entry/exit, they say
Daniel Cioca
Added topic Normalizing doubles
Hello! I believe that this topic has been discussed. Kindly advise where to find the answer. I would like to convert doubles(price) to integers, work with them, and then convert them back to prices before using them in a OrderSend() / OrderModify()
: