Daniel Cioca
Daniel Cioca
  • Information
2 years
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Daniel Cioca
Added topic CopyBuffer for array of struct
Hello! I have a question. I have this array of a struct type, I would like to fill the data from an indicator buffers .  I tried like this :    for ( int i = 0 ; i < array_size; i++)      {
Daniel Cioca
Added topic Handle release
Hello! I have this function in my include file : double ATR( int index)   {    double atr[];    int handle = 0 ;    handle = iATR ( _Symbol , PERIOD_CURRENT , 14 );    CopyBuffer (handle, 0 , 0 , 10
Daniel Cioca
Added topic Syntax
Hello,  On the below code  CTrade :: CTrade( void ) : m_async_mode ( false ) ,                        m_magic( 0 )
Daniel Cioca
Added topic Error "Acces Violation Read to 0x0001F5D0"
Hello! I am getting this error when I close the EA . ("Acces Violation Read to 0x0001F5D0") It is only coming when I use iMAOnArray funtion. double EMA_H( double &array[]){ return (  iMAOnArray(array, 0 ,InpMAPeriod, 0 , MODE_EMA , 1
Daniel Cioca
Added topic Account Margin
Hello guys! Kndly advice on the below: ENUM_ACCOUNT_STOPOUT_MODE stopoutmode=( ENUM_ACCOUNT_STOPOUT_MODE ) AccountInfoInteger ( ACCOUNT_MARGIN_SO_MODE );    double margin_call  = AccountInfoDouble ( ACCOUNT_MARGIN_SO_CALL );
Daniel Cioca
Added topic Code execution speed
Hello! I have one question, I have this EA, and OnTick() running time is 375 msec when all functions inside are used . Is it good is it slow? What do you think? Thanks
Daniel Cioca
Added topic Confused about tickvalue
Hello! My account currency is USD, symbol traded is e mini Dax , margin currency for the symbol is USD , Profit Currency is EUR… how about tickvalue ? In what currency would that be? How can I find out? 
Daniel Cioca
Added topic Lost mql files question
Hello! I have uninstalled my mt4/5 platforms and by mistake I ticked complete uninstall. So I have lost all my mql4 files . Anyway to recover? Thanks!  <Topic title edited by moderator, try to always use a meaningful title when you create a
Daniel Cioca
Added topic Array Search
Hello! So I have this array of a struct: struct exmpl    {    double orderstoploss;    int     orderticket;    string ordercomm;    };   exmpl arr[]; And i have this
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! 
123