Daniel Cioca
Daniel Cioca
  • Information
1 year
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Daniel Cioca
Added topic Normalize Volume to VolStep
Hello! If I use this function double NormVol( double vol)   {    return ( MathFloor (vol/ SymbolInfoDouble ( _Symbol , SYMBOL_VOLUME_STEP ))*            SymbolInfoDouble ( _Symbol
Daniel Cioca
Added topic Adjust StopLoss to ticksize
Hello, I made a trade asistant which works on forex, but on futires not. This asistant works like this, I click on the chart, and there it will be stoploss, and if click is below Bid it will open a Buy and if click is above Ask it will open a sell
Daniel Cioca
Added topic OnTimer()
Hello! If I place a Market order on OnTimer(), Market  is open But there is no  tick coming in that moment , order will still be sent?  Let’s say I want an order to be send if TimeLocal() >=some_datetime. Last tick was received 15
Daniel Cioca
Added topic MT5 Not Available FOR Your region?
Îs that a thing? FOR IOS I got that message when try to update . Any work around that? 
Daniel Cioca
Added topic Custom Indicator
Hello! I have a problem with getting the values for an indicator  into a script. It is about ZigZag indicator , I am only getting the values for the default inputs as setted in the indicator. If I change the input in my iCustom function it will
Daniel Cioca
Added topic Pending Orders
Hello! I have a question… lest assume that I place a pending order at price 0.1230, with. SL at 0.1220 and a TP at 0.1240. And the price gaps from 0.1229 to 0.1235. Pending will be activated at price of 0.1235. The stops prices will remain as
Daniel Cioca
Added topic MqlRates Struct
Hello! Why would I need to use MqlRates struct? Instead of Rates.high(1)… to get the high of candle 1… I can Use iHigh()  or High[]… any reason for that?  Thanks 
Daniel Cioca
Added topic Strategy Tester MT4
Hello! I have observed that during EA test, if I print order profit after is closed, there is a difference betweeen this value, and the value showed in the tester for the same trade. Maybe I am reading OrderProfit wrong? void profit_record()
Daniel Cioca
Added topic Strategy Tester
Hello! Not working with MT5 but would like to know about strategy tester … suppose I want to backrest/optimize a EA for all fx pairs. At the end, we will get the best settings of the EA for all tested pairs? Or best settings for each pair
Daniel Cioca
Added topic TickVol in MT4
Hello! I know that mt4 doesnt have a tick history. So I was thinking if I can make one. Like an indicator which can start recording, and displaying as a hystogram,as soon as it is loaded on the chart. I started to right something to record the ticks
Daniel Cioca
Added topic Market
Hello! Quick question regarding publishing a product on the market. I did not quite understand with regards to activations. Do I have to include that part in my code? How is this controlled to avoid piracy? Thanks! 
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++)      {
123