Friends

Add friends via their profile or user search and you will be able to see if they are online

luccc
Added topic Point & Figure chart
hi id really like to use the point and figure chart as part of my algorithmic trading strategy , is that a possibility and if so how? The same could apply to Heiken Ashi charts or a simple line graph
luccc
Added topic Wrong values being returned
Hi, im trying to set an SL price below the candlestick low. Ive tested everything separately and it all works yet  currently the SLinPips printed for JPY pairs are inaccurate.  input double
luccc
Added topic CopyBuffer error
Hi, i want to call the most recent RSI value in the OnTick for multiple symbols although im currently getting the following error: 'CopyBuffer' - no one of the overloads can be applied to the function call. What's the solution? string symbol_loop[] =
luccc
Added topic Pivot Points Object
Hi, ive taken this code from online but struggling to adapt it. In the backtest , the pivot points vanish once the week is over. Instead i want to see previous pivot points for it designated week, and for the lines to only be drawn during that week
luccc
Added topic Singular to multiple currency pairs
Hi, this is a part of my EA, how can i convert this to a multi-symbol EA? Where's the best place to learn this? datetime old_time; string symbol_loop[] = { "USDJPY" , "EURUSD" , "USDCAD" , "GBPUSD" };       int RSI_Handle; int
luccc
Added topic CopyBuffer Error
I'm trying to convert my EA from trading a singular currency pair to multiple. Before trying to change the number of pairs in use, i didn't have any errors. Since replacing Symbol() with symbol_loop[i], converting the handle into an array, looping
luccc
Added topic Strucutre of programm
hi, i want to create an EA which has 3-5 profit targets for every trade in a hedging account . is the best way to achieve this is by placing 3-5 different trades and setting different TPs? Are there any other potentially more efficient ways to
luccc
Added topic Function returning wrong values
Hi, I'm trying to create a function which returns the number of indicators in use at a given time. For now the code is showing no errors or warnings but the function always returns 0. Since both the final 2 parameters are set as true, the function
luccc
Added topic Restoring CObject
As i was deleting old files, i accidently deleted CObject and now now of my EAs will compile properly. How can i restore CObject
luccc
Added topic Undeclared identifier in Include File
Hi I'm getting 100+ errors about undeclared identifiers in my include file, despite including the include file in my EA, i don't get any warning because I declared all of these ' undeclared identifiers ' as global variables in the EA. How do i get
luccc
Added topic Understanding of code
Hi, i recently paid someone to code me an EA. Can someone please assist me with understand the following lines. Based on other indicators as well as the Moving Average , this function is used to work out how many of the current open positions should
luccc
Added topic MathMax from array
I have an array which gathers the value of the RSI perfectly. How is the best way to pick the highest value from the past X candlesticks?    //---------------------RSI---------------------    string signal = ""
luccc
Added topic OnTick not responsive
Hi I'm pretty new to this so I hope I'm not being too stupid. The 'pattern detector sample' is saved as an EA yet anything i insert in the code doesn't register. I compiled the code with no error. Next I went to MT5 and from the Advisors file, i
luccc
Added topic Asset filtering
Hi Everyone,  I am developing a multi-currency mean reversion strategy. I currently use instantaneous filtering to get rid of potential trades where there is high market noise, low volatility, lack of clear trend and particularly high relative
luccc
Added topic Meta editor not found
Hi, I've just downloaded MT5 . Everything works fine yet once I select meta editor the page freezes for next 5 minutes or so and error message "MetaEditor not found" appears.  Ive just downloaded the same app the same way on another Mac and
luccc
Added topic Backtesting error
Hi Im looking to backtest my EA but an error appears. In the journal it says the EA was not found however I've saved it under expert advisors. Can someone please explain what I've done wrong. Thanks
luccc
Added topic For loop, array & timeframe
Hi guys, don't know if I know what I'm doing, are either lines of code correct?    int TimeFrame[ 3 ] = { 15 , 60 , 240 };       for (i= 0 ; i< ArraySize (TimeFrame); i++)    {
luccc
Added topic Implicit string to number conversion
Implicit string to number conversion warning occurs next to all values in the array. Don't understand why considering each value returns a double. How can input the values for RSI240P0,  RSI240P1,  RSI240P2 in the array  without
luccc
Added topic Zero Divide error
Hi guys, when I test the first part of the code I sometimes get zero divide errors. I'm aware this happens when a candlestick doesn't have any wicks. Looked online but couldn't find a clear solution. double CalculateUpperWick()    {
luccc
Registered at MQL5.community