DroidM
DroidM
DroidM
Added topic Position ticket not available
I have a global variable  ulong    posTicket; and on the onTick function I use this condition to open a trade if(posTicket<=0) { trade.Sell(lot_size, _Symbol ); posTicket = trade.ResultOrder(); } Using a print statement I found out
DroidM
Added topic How to identify clean range to the left hand side of the chart
I am trying to code an expert advisor that runs on simple price action, If price breaks above the recent resistance with clean range to the left hand side, open a buy position. Could somebody help me in trying to code the bit that identifies the
DroidM
Added topic Help with script to find Support and Resistance in MQL5
Hello Everybody, I am still learning when it comes to mql5. I'm trying to code a script that will find support and resistance levels. I'm having problems populating arrays that will hold high values for resistance and low values for support as well
DroidM
Added topic Help with iBandsOnArray in MQL4
I've having trouble setting up bollinger bands for rsi values What I've attempted so far for ( int a= 0 ; a< 40 ; a++)            {
DroidM
Added topic Help with S&R , Trendline EA
Hey, i want to know if it's possible to make an ea that will detect support and resistance levels as well as trendlines. If so, please guide me on how I can ho about creating one, thanks in advance