Daniel Cioca
Daniel Cioca
  • Information
1 year
experience
0
products
0
demo versions
0
jobs
0
signals
0
subscribers
Daniel Cioca
Added topic Margin Check
Hello!  OrderCalcMargin() cannot be used on indicators .  How can I go around this?  Thanks! 
Daniel Cioca
Added topic Mql5 Mql4 FileOpen diference ??
Hello! I have below code:    if (printHistory == true )      {       handle = FileOpen ( "Ticks_" + Symbol () + filename + ".csv" , FILE_CSV | FILE_READ | FILE_WRITE , ',' );
Daniel Cioca
Added topic Volume Tick
Hello! I would like to retrieve all ticks for the past n candles.  In MqlTick structure, what is tick[i].volum and tick[i].volum_real ? I am geting zero for both of them unless I connect to a broker wich is giving real volume. Can I retrieve
Daniel Cioca
Added topic CumulativeDelta
Hello! Any idea how to calculate cumulative delta in mql4? There are some indicators saying that they are delta indicators , but as per definition , delta calculation involves volume_ask and volum_bid which is not available in mt4. 
Daniel Cioca
Added topic Info from DOM
Hello! Is there any function that retrive below info from market? Like how many contracts were sold and how many were bought at a price level 
Daniel Cioca
Added topic querstion for developers
Hello! Is it any chance that in the future updates of metatrader to add more timeframes ( seconds timeframes )? Since there are already EA's that do that, why not updating the platform> Thanks
Daniel Cioca
Added topic Cannot place trades
Hello! I have downloaded this EA which is free on mql Market Place " Candle by Seconds ". It works fine, however, cannot place any trades on the new chart created. Manually or by another EA attached , I get this [ invalid request ] error
Daniel Cioca
Added topic Panel view
Hello! I have a EA which it loads a dashboard onto the charts which I use for trading. When I load this EA on personal computer it is displaying as expected. When I loaded on VPS , some buttons are missing, and it looks like resolution is wrong
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
123