fulltilt
fulltilt
fulltilt
Added topic EA - autostart new trading cycle
Is there a way to auto start new trading cycle after TP/SL ? I try different EA's w/ my own SL/TP settings and after the close it wont restart the same trade
fulltilt
Added topic bar size and wick size in one condition
I'll try to combine min bar size and max wick size in one condtion but it wont work, each condition working only seperated ... How to use it both together like below? bool BuyBarSize= false ; if (Close[ 1 ] > Open[ 1 ] && (High[ 1 ]-Low[ 1
fulltilt
Added topic EA avoid All Day high news with ffcal
Guys, how can I avoid open orders with ffcal newsfilter on "All Day" high news like below? Is this happen when <forecast/><previous/> have empty values (see below) f. ex. if(MinToNews < =MinsBeforeNews
fulltilt
Added topic all open orders - OrdersTotal()
i need to count the total open orders by all charts ... can I use simply? bool countok = false; if ( OrdersTotal () <= 3 ) { countok = true ;}
fulltilt
Added topic detect previous 3 candles close price
I want to check for valid entrys on previous 2 candles and current f.ex. -------- 3 | 1.86 -------- 2 | 1.87 -------- 1 | 1.88  = new candle -------- Buy if candle 3 < as candle 2 and new candle is higher as candle 2 1x blue 2x red = sell the
fulltilt
Added topic avoid multiple signals while AO is up or down
how can I prevent multiple signals in a EA? If AO is up it should only trigger one signal at the beginning and wait until AO is below 0.0000 I'll tried this but without success :-) // Awesome double aog = iCustom ( Symbol (), 0 , "Awesome" , 1
fulltilt
Added topic EMA Cross EA how to add distance between cross?
double MA1 = iMA ( NULL , 0 , 5 , 0 , MODE_EMA , PRICE_CLOSE , 0 ); double MA2 = iMA ( NULL , 0 , 15 , 0 , MODE_EMA , PRICE_CLOSE , 0 ); if (MA1 > MA2 && ....) { Buy= true ; } how can I add a min. distance fex. in points after the cross
fulltilt
Added topic EA should not trade pullback candles
how to prevent order opening if pullback candles occur? TF = H1
fulltilt
Registered at MQL5.community
fulltilt
Added topic DaysOfMonth() question
if (Month()== 1 && DaysOfMonth() == 30 || DaysOfMonth() == 31 ) return ( 0 ); can I use DaysOfMonth() like above
fulltilt
Added topic MA Mode Question
how do I use special modes in MA settings like: MA-Method = Linear Weighted MA-Method = Exponetial Apply to = First Indicators Data    MA1 = iMA ( NULL , 0 , 11 , 0 , MODE_Linear, PRICE_First, 0 );    MA2 = iMA ( NULL , 0 , 34 , 0
fulltilt
Added topic EA start and stop hour + GMToffset
if I use +GMToffset in start/stop hours it will not work ... how can this be solved? fex: int extern FromHour = 8 ; int extern ToHour = 14 ; int extern GMToffset = 1 ; if (Hour()>=FromHour+GMToffset && Hour()<=ToHour+GMToffset) return (
fulltilt
Added topic close function not working
Hmm, is something wrong w/ this close part? It's not working in my EA ...          for (ib= 0 ;ib<totalb;ib++)         {
fulltilt
Added topic Problems with buy sell condition - icustom
I have a problem w/ a buy - sell condition ... It should give a additional buy signal if QQE is > MA and sell a signal if QQE < MA but only sell signal is working ... double MA1 = iMA ( NULL , 0 , 34 , 0 , 1 , 0 , Current + 0 );  
fulltilt
Added topic icustom condition - sell only
please help me with this icustom condition? it should open buy & sell orders ;-)   two1 = iCustom ( NULL , 0 , "fx4" , 30 , false , true , 4 , 0 );   two2 = iCustom ( NULL , 0 , "fx4" , 30 , false , true , 5 , 0 );
fulltilt
Added topic problem with external indicator condition
I want to use Signal_Bars_Executive in a EA ... at 90% green or red it should give a buy or sell signal ... how can this be done? double s= iCustom ( 0 , 0 , "Signal_Bars_Executive_v1" , 0 , 2 , 1 ), sig= iCustom ( 0 , 0 , "Signal_Bars_Executive_v1"
fulltilt
Added topic how to check profit from multiple magicnumbers in one EA
how to check profit from multiple magicnumbers in one EA? fex: magicnumber1 +  magicnumber2 +  magicnumber3 >0 i need this function to close all these open orders in profit ... is there any better way to do this? bool magic1= false ;
fulltilt
Added topic problem w/ orderhistory()
i need to check if the last order closed in profit ... if true an additional sell or buy should be closed ( 2 orders floating sell order -profit + buy order + profit) 2 different magicnumbers but my code close also order with different magicnumber
fulltilt
Added topic how can I determine 1 min up / down bar
how can I determine 1 min up and down bar with a 5 min chart EA
fulltilt
Added topic OrderSymbol() and suffix
if OrderSymbol()==Symbol() does this also work with symbol suffixes like eurusd.arm
12