Davide Gribaudo
Davide Gribaudo
  • Information
1 year
experience
1
products
15
demo versions
0
jobs
0
signals
0
subscribers
Friends 1
Davide Gribaudo
Added topic Economic Calendar
Hello, I read many threads about this topic but they are of some years ago and I want to ask about the actual situation in a more clear way. I want to develop an EA that is reading the values of the economic calendar and trade. My questions
Davide Gribaudo Published product

This Renko is: Live :  constantly updated on the market prices  Dynamic :  updating on each new ATR value Backtestable : Generating the chart during backtest, allowing Real Ticks Accuracy and Time Period Accuracy Guppy Built-in : GMMA with 12 EMA built-in This is what you are looking for! RENKO A Renko chart is a type of chart, developed by the Japanese, that is built using price movement rather than both price   and   standardized time intervals like most charts are. It

Davide Gribaudo
Added topic Partial Close Paying Swaps
Hello, I am performing partial close on yesterday positions. I noticed that sometimes the SWAP is closing proportionally with the lot size of the partial close order. Sometimes instead swap get fully closed in a partial close, without accounting for
Davide Gribaudo
Added topic Partial Close By Order
Hello, Where may I send a feedback to metaquotes, I think there could be added a trade function on mt5 of "Partial Close By": Close By function allows us to close two trades one by another, saving up a spread cost, and be not influenced by slippage
Davide Gribaudo
Added topic Calculate how many lots to close in order to get a certain amount of profit/loss ?
Hello, I am building my EA with the purpose of "not closing" positions in loss. When the Close Conditions are met : a) If the current chain of trades is in profit than close in profit. b) If the current chain of trades is in loss, than hedge the loss
Davide Gribaudo
Added topic ObjectFind Freeze the Chart
Hello, I used to update a trade panel everytick to show the current PnL of the trades. This results to have some problems and to Freeze the tick flow sometimes, randomly. I searched a bit and I found that is better to place a Sleep function or a
Davide Gribaudo
Added topic CTrade PartialClose() not working ? Error 4756 - Code 10004 HELP
Hello people: if (!trade.PositionClosePartial(ticket_hedge_short[m],lots_toclose, 10 ))    Print ( "Error Partial Close: " , _LastError , " - Code: " ,trade.ResultRetcode(), " - Description: " ,trade.ResultRetcodeDescription() , " - BID |
Davide Gribaudo
Added topic Not filling the order - HELP
This is the code: trade.Sell(fixed_lot,act_symbol,info.Bid(), 0 , 0 , "Sell" ) I don't have any problem usually, but sometimes, in the strategy tester this error appear. 2022.10.08 17:39:52.144 2022.09.05 01:36:00   requote 0.99053 /
Davide Gribaudo
Added topic ORDER_TYPE_CLOSE_BY with Ctrade Standard Library
Hello,  I can't understand how to close an open buy with a ORDER_TYPE_CLOSE_BY. my code :  for ( int i= 0 ; i<tcount; i++)         {          if (
Davide Gribaudo
Added topic EMA values MT4 vs MT5
Hello,  I just moved from Mql4 to Mql5. How to get MA value of the last Candle on MT4: double    iMA (symbol,timeframe,ma_period,ma_shift,ma_method,applied_price,shift); so I need: double ema3 = iMA ( _Symbol , _Period , 3 , 0
Davide Gribaudo
Added topic Error 4025 on Web Request
void Download_News()   {    if ( FileGetInteger ( "FFC-ffcal_week_this" + _Symbol + ".xml" , FILE_MODIFY_DATE , false )+ 4 * 60 * 60 < TimeLocal () || ! FileIsExist ( "FFC-ffcal_week_this" + _Symbol + ".xml" , 0 ))
Davide Gribaudo
Added topic iHigh(_Symbol,PERIOD_D1,0) gives me Past Day result
void OnTick ()   { //---    Download_News();    if ( TimeGMT () == StringToTime ( "18:50" ) )      {        double range_day = iHigh ( _Symbol , PERIOD_D1 , 0 ) - iLow (
Davide Gribaudo
Added topic EA backtest issue with reading Daily range
Hello, I want to backtest  My EA on the broker IcMarkets. When I print:  Print(iLow(_Symbol,PERIOD_D1,0));   In the Journal of the Strategy Tester , I receive the lowest dayily price, no matter if the day just started and that price is
Davide Gribaudo
Added topic MarketInfo not working on Strategy Tester [SOLVED]
Hello, My EA is working fine on live testing on demo accounts, is opening closing and managing trades. Most of the trades it opens has tp and sl based on the daily pips range. I check the daily pips range with:  Range =
Davide Gribaudo
Registered at MQL5.community